diff --git a/487_DeePMD-kit/deePMD.eb b/487_DeePMD-kit/deePMD.eb index 8dc9ebd4..fb759821 100644 --- a/487_DeePMD-kit/deePMD.eb +++ b/487_DeePMD-kit/deePMD.eb @@ -3,6 +3,8 @@ easyblock = 'PythonBundle' name = 'DeePDM-kit' version = '3.0.1' # versionsuffix = '-CUDA-%(cudaver)s' +local_tf_version = '2.15.1' +versionsuffix = '-TensorFlow-%s' % local_tf_version homepage = 'https://github.com/deepmodeling/deepmd-kit/' description = "A deep learning package for many-body potential energy representation and molecular dynamics." @@ -22,8 +24,20 @@ toolchain = {'name': 'foss', 'version': '2023a'} # ok 'array-api-compat', # ok dpdata # parallel training deps: - # horovod + # OK? horovod - horovod_v2_kenneths_hack # OK mpi4py + # ok dpdata 0.2.21 requires monty, which is not installed. + # ok dargs 0.4.10 requires typeguard, which is not installed. + # OK mendeleev 0.20.1 requires deprecated, which is not installed. + # OK mendeleev 0.20.1 requires pydantic, which is not installed. + # ok mendeleev 0.20.1 requires pyfiglet, which is not installed. + # OK mendeleev 0.20.1 requires sqlalchemy, which is not installed. + # ok monty 2025.1.9 requires ruamel-yaml, which is not installed. + # ok wcmatch 8.5.2 requires bracex, which is not installed. + # ok typeguard 4.3.0 has requirement typing-extensions>=4.10.0, but you have typing-extensions 4.9.0. -> v4.2.0 + # ok mendeleev 0.20.1 has requirement pydantic<3.0.0,>=2.9.2, but you have pydantic 2.5.3. -> 0.18.1 + # ok mendeleev 0.20.1 has requirement pyfiglet<0.9,>=0.8.post1, but you have pyfiglet 1.0.2. + # ok tensorflow 2.15.1 has requirement wrapt<1.15,>=1.11.0, but you have wrapt 1.15.0. builddependencies = [ ('scikit-build-core', '0.9.3'), @@ -41,30 +55,56 @@ dependencies = [ ('TensorFlow', '2.15.1'), ('jax', '0.4.25'), ('mpi4py', '3.1.4'), - ('protobuf', '24.0'), - # horovod + ('Deprecated', '1.2.14'), + # ('pydantic', '2.5.3'), + ('SQLAlchemy','2.0.25'), + ('ruamel.yaml', '0.17.32'), + ('Horovod', '0.28.1', versionsuffix), + ('typing-extensions', '4.9.0'), + # ('protobuf', '24.0'), + ] use_pip = True sanity_pip_check = True +local_preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' + exts_list = [ + ('wrapt', '1.14.1', { + 'checksums': ['380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d'], + }), + ('typeguard', '4.2.0', { + 'checksums': ['2aeae510750fca88d0a2ceca3e86de7f71aa43b6c3e6c267737ce1f5effc4b34'], + }), ('dargs', '0.4.10', { 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], }), + ('bracex', '2.5.post1', { + 'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl', + 'checksums': ['13e5732fec27828d6af308628285ad358047cec36801598368cb28bc631dbaf6'], + }), ('wcmatch', '8.5.2', { 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], }), - ('mendeleev', '0.20.1', { - 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + ('pyfiglet', '0.8.post1', { + 'checksums': ['c6c2321755d09267b438ec7b936825a4910fec696292139e664ca8670e103639'], + }), + ('mendeleev', '0.18.1', { + 'checksums': ['a5b60bd313a5d2b404a6a250186e643663d5625c8138b3cfba829f1f4384f2a0'], }), ('array_api_compat', '1.10.0', { 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], }), + ('monty', '2025.1.9', { + 'checksums': ['edb680b01ea1e59225cb666634b0dd2b2393eef07f3d45748445db92e1f1006d'], + }), ('dpdata', '0.2.21', { 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], }), ('deepmd_kit', version, { + 'modulename': 'deepmd', + 'preinstallopts': "module swap protobuf/3.21.9-GCCcore-12.3.0 && ", 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], }), ] @@ -74,13 +114,42 @@ exts_list = [ # 'dirs': ['lib/python%(pyshortver)s/site-packages'], # } -# sanity_check_commands = ['%(name)s --help'] +sanity_check_commands = ['dp -h'] moduleclass = 'ai' -# E1: +# libtensorflow_cc.so is in $EBROOTTESORFLOW/lib/python3.11/site-packages/tensorflow/libtensorflow_cc.so.2 + +# E1: OK + # -> use Kenneth's hack in preinstallopts (module swap protobuf/3.21.9-GCCcore-12.3.0) -> works + # ? but in tensorflow-2.15.1 there is req protobuf: protobuf==4.23.4 not 3.21.9 # same problem as with horovod: https://github.com/vscentrum/vsc-software-stack/issues/390#issuecomment-2304201251 - # <- during pip install deepmd-kit: - #error This file was generated by an older version of protoc - #error incompatible with your Protocol Buffer headers - #error regenerate this file with a newer version of protoc. \ No newline at end of file + # <- during pip install deepmd-kit: <- log2.txt + # error This file was generated by an older version of protoc + # error incompatible with your Protocol Buffer headers + # error regenerate this file with a newer version of protoc. + # Building CXX object op/tf/CMakeFiles/deepmd_op.dir/cmake_pch.hxx.gch + # In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op.h:26, + # from /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/deepmd_kit/deepmd_kit-3.0.1/source/op/tf/custom_op.h:9, + # from /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/deepmd_kit/deepmd_kit-3.0.1/build/py37-none-linux_x86_64/op/tf/CMakeFiles/deepmd_op.dir/cmake_pch.hxx:5, + # from : + # /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + # 17 | #error This file was generated by an older version of protoc which is + # | ^~~~~ + # /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + # 18 | #error incompatible with your Protocol Buffer headers. Please + # | ^~~~~ + # /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + # 19 | #error regenerate this file with a newer version of protoc. + # | ^~~~~ + # In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_builder.h:27, + # from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:24, + # from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op.h:27: + # /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + # 17 | #error This file was generated by an older version of protoc which is + # | ^~~~~ + # /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + # 18 | #error incompatible with your Protocol Buffer headers. Please + # | ^~~~~ + # /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + # 19 | #error regenerate this file with a newer version of protoc. \ No newline at end of file diff --git a/487_DeePMD-kit/deePMD_v2-torch.eb b/487_DeePMD-kit/deePMD_v2-torch.eb new file mode 100644 index 00000000..5a4283ea --- /dev/null +++ b/487_DeePMD-kit/deePMD_v2-torch.eb @@ -0,0 +1,85 @@ +easyblock = 'PythonBundle' + +name = 'DeePDM-kit' +version = '3.0.1' +# versionsuffix = '-CUDA-%(cudaver)s' + +homepage = 'https://github.com/deepmodeling/deepmd-kit/' +description = "A deep learning package for many-body potential energy representation and molecular dynamics." + +toolchain = {'name': 'foss', 'version': '2023a'} + +# DEPS: + # OK scikit-build-core>=0.5,<0.11,!=0.6.0 + # OK 'numpy>=1.21', + # OK 'scipy', + # OK 'pyyaml', + # ok 'dargs >= 0.4.7', + # OK "h5py>=3.6.0,!=3.11.0; platform_system=='Linux' and platform_machine=='aarch64'", + # ok 'wcmatch', + # OK 'ml_dtypes', + # ok 'mendeleev', + # ok 'array-api-compat', + # ok dpdata + # parallel training deps: + # NO horovod - + # OK mpi4py + +builddependencies = [ + ('scikit-build-core', '0.9.3'), + ('hatchling', '1.18.0'), + ('poetry', '1.5.1'), + ('git', '2.41.0', '-nodocs'), +] +dependencies = [ + # ('CUDA', '12.6.0', '', SYSTEM), + ('Python', '3.11.3'), + ('SciPy-bundle', '2023.07'), + ('ml_dtypes', '0.3.2'), + ('PyYAML', '6.0'), + ('h5py', '3.9.0'), + ('PyTorch', '2.1.2'), + # ('TensorFlow', '2.15.1'), + # ('jax', '0.4.25'), + ('mpi4py', '3.1.4'), + # ('protobuf', '24.0'), + # horovod +] + +use_pip = True +sanity_pip_check = True + +# preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' +local_preinstallopts = 'export DP_ENABLE_PYTORCH=1 && export DP_ENABLE_TENSORFLOW=0 && ' +local_preinstallopts += 'export PYTORCH_ROOT=$EBROOTPYTORCH && ' + +exts_list = [ + ('dargs', '0.4.10', { + 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], + }), + ('wcmatch', '8.5.2', { + 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], + }), + ('mendeleev', '0.20.1', { + 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + }), + ('array_api_compat', '1.10.0', { + 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], + }), + ('dpdata', '0.2.21', { + 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], + }), + ('deepmd_kit', version, { + 'preinstallopts': "export DP_ENABLE_PYTORCH=1 && export DP_ENABLE_TENSORFLOW=0 && export PYTORCH_ROOT=$EBROOTPYTORCH && ", + 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], + }), +] + +# sanity_check_paths = { +# 'files': ['bin/%(name)s'], +# 'dirs': ['lib/python%(pyshortver)s/site-packages'], +# } + +# sanity_check_commands = ['%(name)s --help'] + +moduleclass = 'ai' diff --git a/487_DeePMD-kit/horovod_v2_kenneths_hack.eb b/487_DeePMD-kit/horovod_v2_kenneths_hack.eb new file mode 100644 index 00000000..1a307edc --- /dev/null +++ b/487_DeePMD-kit/horovod_v2_kenneths_hack.eb @@ -0,0 +1,52 @@ +easyblock = 'PythonBundle' + +name = 'Horovod' +version = '0.28.1' +local_tf_version = '2.15.1' +local_cuda_suffix = '-CUDA-%(cudaver)s' +versionsuffix = local_cuda_suffix + '-TensorFlow-%s' % local_tf_version + +homepage = 'https://github.com/uber/horovod' +description = "Horovod is a distributed training framework for TensorFlow." + +toolchain = {'name': 'foss', 'version': '2023a'} + +builddependencies = [ + ('CMake', '3.26.3'), + # ('protobuf', '3.21.9'), +] +dependencies = [ + ('Python', '3.11.3'), + ('PyYAML', '6.0'), + ('CUDA', '12.1.1', '', SYSTEM), + ('NCCL', '2.18.3', local_cuda_suffix), + ('TensorFlow', local_tf_version, local_cuda_suffix), +] + +use_pip = True +sanity_pip_check = True + +preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && HOROVOD_WITH_MPI=1 HOROVOD_GPU_ALLREDUCE=NCCL HOROVOD_GPU_BROADCAST=NCCL ' +preinstallopts += 'HOROVOD_WITH_TENSORFLOW=1 HOROVOD_WITHOUT_PYTORCH=1 HOROVOD_WITHOUT_MXNET=1 ' + +exts_list = [ + ('cloudpickle', '2.2.1', { + 'checksums': ['d89684b8de9e34a2a43b3460fbca07d09d6e25ce858df4d5a44240403b6178f5'], + }), + ('horovod', version, { + 'patches': ['Horovod-0.28.1_support_flatbuffers_2.0.6.patch'], + 'checksums': [ + '92a43f5a94c43907a56805bad15f19700c62ffc83b7ca483f9e104e229f67ef0', + '9696ffb3b2bad1d6dd5a9f37bc58078ca7c585f933bcbec037036ad9fc0b297d', + ], + }), +] + +sanity_check_paths = { + 'files': ['bin/horovodrun'], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +sanity_check_commands = ["horovodrun --help"] + +moduleclass = 'tools' diff --git a/487_DeePMD-kit/horovod_v3_NOCUDA_kenneths_hack.eb b/487_DeePMD-kit/horovod_v3_NOCUDA_kenneths_hack.eb new file mode 100644 index 00000000..97e4f608 --- /dev/null +++ b/487_DeePMD-kit/horovod_v3_NOCUDA_kenneths_hack.eb @@ -0,0 +1,52 @@ +easyblock = 'PythonBundle' + +name = 'Horovod' +version = '0.28.1' +local_tf_version = '2.15.1' +# local_cuda_suffix = '-CUDA-%(cudaver)s' +# versionsuffix = local_cuda_suffix + '-TensorFlow-%s' % local_tf_version +versionsuffix = '-TensorFlow-%s' % local_tf_version + +homepage = 'https://github.com/uber/horovod' +description = "Horovod is a distributed training framework for TensorFlow." + +toolchain = {'name': 'foss', 'version': '2023a'} + +builddependencies = [ + ('CMake', '3.26.3'), + # ('protobuf', '3.21.9'), +] +dependencies = [ + ('Python', '3.11.3'), + ('PyYAML', '6.0'), + ('TensorFlow', local_tf_version), +] + +use_pip = True +sanity_pip_check = True + +local_preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && HOROVOD_WITH_MPI=1 ' +local_preinstallopts += 'HOROVOD_WITH_TENSORFLOW=1 HOROVOD_WITHOUT_PYTORCH=1 HOROVOD_WITHOUT_MXNET=1 ' + +exts_list = [ + ('cloudpickle', '2.2.1', { + 'checksums': ['d89684b8de9e34a2a43b3460fbca07d09d6e25ce858df4d5a44240403b6178f5'], + }), + ('horovod', version, { + 'preinstallopts': local_preinstallopts, + 'patches': ['Horovod-0.28.1_support_flatbuffers_2.0.6.patch'], + 'checksums': [ + '92a43f5a94c43907a56805bad15f19700c62ffc83b7ca483f9e104e229f67ef0', + '9696ffb3b2bad1d6dd5a9f37bc58078ca7c585f933bcbec037036ad9fc0b297d', + ], + }), +] + +sanity_check_paths = { + 'files': ['bin/horovodrun'], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +sanity_check_commands = ["horovodrun --help"] + +moduleclass = 'tools' diff --git a/487_DeePMD-kit/log2.txt b/487_DeePMD-kit/log2.txt new file mode 100644 index 00000000..be4030a9 --- /dev/null +++ b/487_DeePMD-kit/log2.txt @@ -0,0 +1,8803 @@ +== 2025-01-23 12:34:09,552 build_log.py:229 INFO This is EasyBuild 4.9.5.dev0-rb37f70756960c1686875974f8381491df280cc00 (framework: 4.9.5.dev0-rb37f70756960c1686875974f8381491df280cc00, easyblocks: 4.9.5.dev0-r3469151ce7e4f85415c877dee555aeea7691c757) on host node4016.donphan.os. +== 2025-01-23 12:34:09,552 build_log.py:232 INFO Command line: --accept-eula-for='CUDA,cuDNN' --buildpath='/tmp/vsc47063/easybuild/build' --containerpath='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/containers' --cuda-compute-capabilities='8.6' --git-working-dirs-path='/user/gent/470/vsc47063/easybuild' --github-user='pavelToman' --group-writable-installdir --hooks='/user/gent/470/vsc47063/my_hooks.py' --installpath='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib' --packagepath='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/packages' --prefix='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib' --rebuild --repositorypath='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/ebfiles_repo' --robot='/user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs' --sourcepath='/data/gent/vo/001/gvo00117/easybuild/sources:/apps/gent/sources' --tmpdir='/tmp/vsc47063' --trace deePMD.eb +== 2025-01-23 12:34:09,553 build_log.py:234 INFO Using /tmp/vsc47063/eb-m63ydakg as temporary directory +== 2025-01-23 12:34:09,553 robot.py:60 INFO Using robot path(s): ['/user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs'] +== 2025-01-23 12:34:09,553 robot.py:75 INFO Extended list of robot search paths with []: ['/user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs'] +== 2025-01-23 12:34:09,554 options.py:1877 INFO Using default external modules metadata cfg files: ['/user/gent/470/vsc47063/easybuild/easybuild-framework/etc/cray_external_modules_metadata.cfg', '/user/gent/470/vsc47063/easybuild/easybuild-framework/etc/ohpc_external_modules_metadata.cfg'] +== 2025-01-23 12:34:09,597 systemtools.py:1250 INFO Found Python version 3.6 +== 2025-01-23 12:34:09,597 systemtools.py:1262 INFO Running EasyBuild with Python 3 (version 3.6) +== 2025-01-23 12:34:09,598 filetools.py:2804 INFO /tmp/fake_vsc_matp368r moved to /tmp/vsc47063/eb-m63ydakg/fake_vsc_matp368r +== 2025-01-23 12:34:09,598 hooks.py:135 INFO Importing hooks implementation from /user/gent/470/vsc47063/my_hooks.py... +== 2025-01-23 12:34:09,599 hooks.py:146 INFO Found hooks: ['parse_hook'] +== 2025-01-23 12:34:09,599 hooks.py:180 INFO Defined hooks verified, all known hooks: parse_hook +== 2025-01-23 12:34:09,599 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previously undefined) +== 2025-01-23 12:34:09,599 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previously undefined) +== 2025-01-23 12:34:09,599 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previously undefined) +== 2025-01-23 12:34:09,599 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previously undefined) +== 2025-01-23 12:34:09,599 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previously undefined) +== 2025-01-23 12:34:09,600 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:09,606 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:09,606 run.py:251 INFO Using /bin/bash as shell for running cmd: type module +== 2025-01-23 12:34:09,606 run.py:260 INFO running cmd: type module +== 2025-01-23 12:34:09,634 modules.py:244 INFO Found Lmod version 8.7.4 +== 2025-01-23 12:34:09,634 modules.py:252 INFO Converted actual version to '8.7.4' +== 2025-01-23 12:34:09,678 tools.py:282 INFO Found location to 'eb' script via $EB_SCRIPT_PATH: /user/gent/470/vsc47063/easybuild/easybuild-framework/eb +== 2025-01-23 12:34:09,678 tools.py:298 INFO Not considering /user/gent/470/vsc47063/easybuild (no easybuild/easyconfigs subdir found) +== 2025-01-23 12:34:09,678 tools.py:306 INFO Also considering installation prefix /kyukon/home/gent/470/vsc47063/easybuild (via resolved path to 'eb')... +== 2025-01-23 12:34:09,679 filetools.py:1033 INFO No index found for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs, creating one (in memory)... +== 2025-01-23 12:34:11,749 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:11,752 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:11,752 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:11,752 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:11,752 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:11,752 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:11,752 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:11,758 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:11,758 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:11,880 easyconfig.py:1913 INFO Derived full easyblock module path for PythonBundle: easybuild.easyblocks.generic.pythonbundle +== 2025-01-23 12:34:11,880 easyconfig.py:1962 INFO Successfully obtained class 'PythonBundle' for easyblock 'PythonBundle' (software name 'DeePDM-kit') +== 2025-01-23 12:34:11,880 easyconfig.py:708 INFO Parsing easyconfig file /kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit/deePMD.eb with rawcontent: easyblock = 'PythonBundle' + +name = 'DeePDM-kit' +version = '3.0.1' +# versionsuffix = '-CUDA-%(cudaver)s' + +homepage = 'https://github.com/deepmodeling/deepmd-kit/' +description = "A deep learning package for many-body potential energy representation and molecular dynamics." + +toolchain = {'name': 'foss', 'version': '2023a'} + +# DEPS: + # OK scikit-build-core>=0.5,<0.11,!=0.6.0 + # OK 'numpy>=1.21', + # OK 'scipy', + # OK 'pyyaml', + # ok 'dargs >= 0.4.7', + # OK "h5py>=3.6.0,!=3.11.0; platform_system=='Linux' and platform_machine=='aarch64'", + # ok 'wcmatch', + # OK 'ml_dtypes', + # ok 'mendeleev', + # ok 'array-api-compat', + # ok dpdata + # parallel training deps: + # NO horovod - + # OK mpi4py + +builddependencies = [ + ('scikit-build-core', '0.9.3'), + ('hatchling', '1.18.0'), + ('poetry', '1.5.1'), + ('git', '2.41.0', '-nodocs'), +] +dependencies = [ + # ('CUDA', '12.6.0', '', SYSTEM), + ('Python', '3.11.3'), + ('SciPy-bundle', '2023.07'), + ('ml_dtypes', '0.3.2'), + ('PyYAML', '6.0'), + ('h5py', '3.9.0'), + ('TensorFlow', '2.15.1'), + ('jax', '0.4.25'), + ('mpi4py', '3.1.4'), + # ('protobuf', '24.0'), + # horovod +] + +use_pip = True +sanity_pip_check = True + +# preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' + +exts_list = [ + ('dargs', '0.4.10', { + 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], + }), + ('wcmatch', '8.5.2', { + 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], + }), + ('mendeleev', '0.20.1', { + 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + }), + ('array_api_compat', '1.10.0', { + 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], + }), + ('dpdata', '0.2.21', { + 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], + }), + ('deepmd_kit', version, { + 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], + }), +] + +# sanity_check_paths = { +# 'files': ['bin/%(name)s'], +# 'dirs': ['lib/python%(pyshortver)s/site-packages'], +# } + +# sanity_check_commands = ['%(name)s --help'] + +moduleclass = 'ai' + +# E1: + # same problem as with horovod: https://github.com/vscentrum/vsc-software-stack/issues/390#issuecomment-2304201251 + # <- during pip install deepmd-kit: + # error This file was generated by an older version of protoc + # error incompatible with your Protocol Buffer headers + # error regenerate this file with a newer version of protoc. +== 2025-01-23 12:34:11,880 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('scikit-build-core', '0.9.3'), ('hatchling', '1.18.0'), ('poetry', '1.5.1'), ('git', '2.41.0', '-nodocs')] (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('Python', '3.11.3'), ('SciPy-bundle', '2023.07'), ('ml_dtypes', '0.3.2'), ('PyYAML', '6.0'), ('h5py', '3.9.0'), ('TensorFlow', '2.15.1'), ('jax', '0.4.25'), ('mpi4py', '3.1.4')] (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter description: value A deep learning package for many-body potential energy representation and molecular dynamics. (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value PythonBundle (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter exts_list: value [('dargs', '0.4.10', {'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8']}), ('wcmatch', '8.5.2', {'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2']}), ('mendeleev', '0.20.1', {'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da']}), ('array_api_compat', '1.10.0', {'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad']}), ('dpdata', '0.2.21', {'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1']}), ('deepmd_kit', '3.0.1', {'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff']})] (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://github.com/deepmodeling/deepmd-kit/ (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value ai (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter name: value DeePDM-kit (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter sanity_pip_check: value True (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'foss', 'version': '2023a'} (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter use_pip: value True (type: ) +== 2025-01-23 12:34:11,881 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.0.1 (type: ) +== 2025-01-23 12:34:11,881 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:11,881 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:11,883 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:11,883 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:11,883 easyconfig.py:2206 INFO No index found for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs, so creating it... +== 2025-01-23 12:34:13,584 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:13,585 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:13,585 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:13,585 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:13,585 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:13,585 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:13,586 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:13,593 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:13,594 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:13,597 easyconfig.py:1913 INFO Derived full easyblock module path for Toolchain: easybuild.easyblocks.generic.toolchain +== 2025-01-23 12:34:13,597 easyconfig.py:1962 INFO Successfully obtained class 'Toolchain' for easyblock 'Toolchain' (software name 'foss') +== 2025-01-23 12:34:13,597 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/f/foss/foss-2023a.eb with rawcontent: easyblock = 'Toolchain' + +name = 'foss' +version = '2023a' + +homepage = 'https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain' +description = """GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK.""" + +toolchain = SYSTEM + +local_gccver = '12.3.0' + +# toolchain used to build foss dependencies +local_comp_mpi_tc = ('gompi', version) + +# we need GCC and OpenMPI as explicit dependencies instead of gompi toolchain +# because of toolchain preparation functions +dependencies = [ + ('GCC', local_gccver), + ('OpenMPI', '4.1.5', '', ('GCC', local_gccver)), + ('FlexiBLAS', '3.3.1', '', ('GCC', local_gccver)), + ('FFTW', '3.3.10', '', ('GCC', local_gccver)), + ('FFTW.MPI', '3.3.10', '', local_comp_mpi_tc), + ('ScaLAPACK', '2.2.0', '-fb', local_comp_mpi_tc), +] + +moduleclass = 'toolchain' + +== 2025-01-23 12:34:13,597 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:13,597 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('GCC', '12.3.0'), ('OpenMPI', '4.1.5', '', ('GCC', '12.3.0')), ('FlexiBLAS', '3.3.1', '', ('GCC', '12.3.0')), ('FFTW', '3.3.10', '', ('GCC', '12.3.0')), ('FFTW.MPI', '3.3.10', '', ('gompi', '2023a')), ('ScaLAPACK', '2.2.0', '-fb', ('gompi', '2023a'))] (type: ) +== 2025-01-23 12:34:13,597 easyconfig.py:689 INFO setting easyconfig parameter description: value GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. (type: ) +== 2025-01-23 12:34:13,597 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value Toolchain (type: ) +== 2025-01-23 12:34:13,598 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain (type: ) +== 2025-01-23 12:34:13,598 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value toolchain (type: ) +== 2025-01-23 12:34:13,598 easyconfig.py:689 INFO setting easyconfig parameter name: value foss (type: ) +== 2025-01-23 12:34:13,598 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:13,598 easyconfig.py:689 INFO setting easyconfig parameter version: value 2023a (type: ) +== 2025-01-23 12:34:13,598 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:13,598 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:13,599 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:13,599 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:13,917 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='foss', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='foss', name='foss', nameletter='f', nameletterlower='f', namelower='foss', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='2023a', version_major='2023a', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:13,917 easyconfig.py:869 INFO Validating easyconfig +== 2025-01-23 12:34:13,917 easyconfig.py:874 INFO Checking OS dependencies +== 2025-01-23 12:34:13,917 easyconfig.py:929 INFO OS dependencies ok: [] +== 2025-01-23 12:34:13,918 easyconfig.py:879 INFO Checking skipsteps +== 2025-01-23 12:34:13,918 easyconfig.py:884 INFO Checking build option lists +== 2025-01-23 12:34:13,918 easyconfig.py:887 INFO Checking licenses +== 2025-01-23 12:34:13,920 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:13,920 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:13,920 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,016 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,017 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,017 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,017 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,017 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,017 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,018 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,024 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,025 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,025 easyconfig.py:1913 INFO Derived full easyblock module path for Toolchain: easybuild.easyblocks.generic.toolchain +== 2025-01-23 12:34:21,025 easyconfig.py:1962 INFO Successfully obtained class 'Toolchain' for easyblock 'Toolchain' (software name 'foss') +== 2025-01-23 12:34:21,026 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/f/foss/foss-2023a.eb with rawcontent: easyblock = 'Toolchain' + +name = 'foss' +version = '2023a' + +homepage = 'https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain' +description = """GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK.""" + +toolchain = SYSTEM + +local_gccver = '12.3.0' + +# toolchain used to build foss dependencies +local_comp_mpi_tc = ('gompi', version) + +# we need GCC and OpenMPI as explicit dependencies instead of gompi toolchain +# because of toolchain preparation functions +dependencies = [ + ('GCC', local_gccver), + ('OpenMPI', '4.1.5', '', ('GCC', local_gccver)), + ('FlexiBLAS', '3.3.1', '', ('GCC', local_gccver)), + ('FFTW', '3.3.10', '', ('GCC', local_gccver)), + ('FFTW.MPI', '3.3.10', '', local_comp_mpi_tc), + ('ScaLAPACK', '2.2.0', '-fb', local_comp_mpi_tc), +] + +moduleclass = 'toolchain' + +== 2025-01-23 12:34:21,026 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,026 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('GCC', '12.3.0'), ('OpenMPI', '4.1.5', '', ('GCC', '12.3.0')), ('FlexiBLAS', '3.3.1', '', ('GCC', '12.3.0')), ('FFTW', '3.3.10', '', ('GCC', '12.3.0')), ('FFTW.MPI', '3.3.10', '', ('gompi', '2023a')), ('ScaLAPACK', '2.2.0', '-fb', ('gompi', '2023a'))] (type: ) +== 2025-01-23 12:34:21,026 easyconfig.py:689 INFO setting easyconfig parameter description: value GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. (type: ) +== 2025-01-23 12:34:21,026 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value Toolchain (type: ) +== 2025-01-23 12:34:21,026 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain (type: ) +== 2025-01-23 12:34:21,026 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value toolchain (type: ) +== 2025-01-23 12:34:21,026 easyconfig.py:689 INFO setting easyconfig parameter name: value foss (type: ) +== 2025-01-23 12:34:21,026 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,027 easyconfig.py:689 INFO setting easyconfig parameter version: value 2023a (type: ) +== 2025-01-23 12:34:21,027 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,027 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,028 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,028 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,029 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='foss', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='foss', name='foss', nameletter='f', nameletterlower='f', namelower='foss', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='2023a', version_major='2023a', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,029 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,032 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,032 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,032 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,032 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,033 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,033 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,033 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,033 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,033 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,034 easyconfig.py:1913 INFO Derived full easyblock module path for Bundle: easybuild.easyblocks.generic.bundle +== 2025-01-23 12:34:21,034 easyconfig.py:1962 INFO Successfully obtained class 'Bundle' for easyblock 'Bundle' (software name 'GCC') +== 2025-01-23 12:34:21,034 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/g/GCC/GCC-12.3.0.eb with rawcontent: easyblock = 'Bundle' + +name = 'GCC' +version = '12.3.0' + +homepage = 'https://gcc.gnu.org/' +description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...).""" + +toolchain = SYSTEM + +dependencies = [ + ('GCCcore', version), + # binutils built on top of GCCcore, which was built on top of binutils (built with system toolchain) + ('binutils', '2.40', '', ('GCCcore', version)), +] + +altroot = 'GCCcore' +altversion = 'GCCcore' + +# this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS) +moduleclass = 'compiler' + +== 2025-01-23 12:34:21,034 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,034 easyconfig.py:689 INFO setting easyconfig parameter altroot: value GCCcore (type: ) +== 2025-01-23 12:34:21,034 easyconfig.py:689 INFO setting easyconfig parameter altversion: value GCCcore (type: ) +== 2025-01-23 12:34:21,035 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('GCCcore', '12.3.0'), ('binutils', '2.40', '', ('GCCcore', '12.3.0'))] (type: ) +== 2025-01-23 12:34:21,035 easyconfig.py:689 INFO setting easyconfig parameter description: value The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). (type: ) +== 2025-01-23 12:34:21,035 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value Bundle (type: ) +== 2025-01-23 12:34:21,035 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://gcc.gnu.org/ (type: ) +== 2025-01-23 12:34:21,035 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value compiler (type: ) +== 2025-01-23 12:34:21,035 easyconfig.py:689 INFO setting easyconfig parameter name: value GCC (type: ) +== 2025-01-23 12:34:21,035 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,035 easyconfig.py:689 INFO setting easyconfig parameter version: value 12.3.0 (type: ) +== 2025-01-23 12:34:21,035 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,035 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,036 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,036 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,037 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='gcc', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='gcc', name='GCC', nameletter='G', nameletterlower='g', namelower='gcc', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='12.3.0', version_major='12', version_major_minor='12.3', version_minor='3', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,037 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,039 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,040 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,040 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,040 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,040 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,040 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,040 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,040 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,040 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,078 easyconfig.py:1945 INFO Successfully obtained EB_OpenMPI class instance from easybuild.easyblocks.openmpi +== 2025-01-23 12:34:21,078 easyconfig.py:1962 INFO Successfully obtained class 'EB_OpenMPI' for easyblock 'None' (software name 'OpenMPI') +== 2025-01-23 12:34:21,079 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/o/OpenMPI/OpenMPI-4.1.5-GCC-12.3.0.eb with rawcontent: name = 'OpenMPI' +version = '4.1.5' + +homepage = 'https://www.open-mpi.org/' +description = """The Open MPI Project is an open source MPI-3 implementation.""" + +toolchain = {'name': 'GCC', 'version': '12.3.0'} + +source_urls = ['https://www.open-mpi.org/software/ompi/v%(version_major_minor)s/downloads'] +sources = [SOURCELOWER_TAR_BZ2] +patches = [ + 'OpenMPI-4.1.1_build-with-internal-cuda-header.patch', + 'OpenMPI-4.1.1_opal-datatype-cuda-performance.patch', + 'OpenMPI-4.1.5_fix-pmix3x.patch', + 'OpenMPI-4.1.x_add_atomic_wmb.patch', + 'OpenMPI-4.1.5_fix_opal_unsupported_key.patch', +] +checksums = [ + {'openmpi-4.1.5.tar.bz2': 'a640986bc257389dd379886fdae6264c8cfa56bc98b71ce3ae3dfbd8ce61dbe3'}, + {'OpenMPI-4.1.1_build-with-internal-cuda-header.patch': + '63eac52736bdf7644c480362440a7f1f0ae7c7cae47b7565f5635c41793f8c83'}, + {'OpenMPI-4.1.1_opal-datatype-cuda-performance.patch': + 'b767c7166cf0b32906132d58de5439c735193c9fd09ec3c5c11db8d5fa68750e'}, + {'OpenMPI-4.1.5_fix-pmix3x.patch': '46edac3dbf32f2a611d45e8a3c8edd3ae2f430eec16a1373b510315272115c40'}, + {'OpenMPI-4.1.x_add_atomic_wmb.patch': '9494bbc546d661ba5189e44b4c84a7f8df30a87cdb9d96ce2e73a7c8fecba172'}, + {'OpenMPI-4.1.5_fix_opal_unsupported_key.patch': + '4375a58a18c8bced14cc5978f98a7f2395cc6a9c07dd65b1c28f53294cad4385'}, +] + +builddependencies = [ + ('pkgconf', '1.9.5'), + ('Perl', '5.36.1'), + ('Autotools', '20220317'), +] + +dependencies = [ + ('zlib', '1.2.13'), + ('hwloc', '2.9.1'), + ('libevent', '2.1.12'), + ('UCX', '1.14.1'), + ('libfabric', '1.18.0'), + ('PMIx', '4.2.4'), + ('UCC', '1.2.0'), +] + +# Update configure to include changes from the "internal-cuda" patch +# by running a subset of autogen.pl sufficient to achieve this +# without doing the full, long-running regeneration. +preconfigopts = ' && '.join([ + 'cd config', + 'autom4te --language=m4sh opal_get_version.m4sh -o opal_get_version.sh', + 'cd ..', + 'autoconf', + 'autoheader', + 'aclocal', + 'automake', + '' +]) + +# CUDA related patches and custom configure option can be removed if CUDA support isn't wanted. +configopts = '--with-cuda=internal ' + +# disable MPI1 compatibility for now, see what breaks... +# configopts += '--enable-mpi1-compatibility ' + +# to enable SLURM integration (site-specific) +# configopts += '--with-slurm --with-pmi=/usr/include/slurm --with-pmi-libdir=/usr' + +moduleclass = 'mpi' + +== 2025-01-23 12:34:21,079 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,079 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('pkgconf', '1.9.5'), ('Perl', '5.36.1'), ('Autotools', '20220317')] (type: ) +== 2025-01-23 12:34:21,079 easyconfig.py:689 INFO setting easyconfig parameter checksums: value [{'openmpi-4.1.5.tar.bz2': 'a640986bc257389dd379886fdae6264c8cfa56bc98b71ce3ae3dfbd8ce61dbe3'}, {'OpenMPI-4.1.1_build-with-internal-cuda-header.patch': '63eac52736bdf7644c480362440a7f1f0ae7c7cae47b7565f5635c41793f8c83'}, {'OpenMPI-4.1.1_opal-datatype-cuda-performance.patch': 'b767c7166cf0b32906132d58de5439c735193c9fd09ec3c5c11db8d5fa68750e'}, {'OpenMPI-4.1.5_fix-pmix3x.patch': '46edac3dbf32f2a611d45e8a3c8edd3ae2f430eec16a1373b510315272115c40'}, {'OpenMPI-4.1.x_add_atomic_wmb.patch': '9494bbc546d661ba5189e44b4c84a7f8df30a87cdb9d96ce2e73a7c8fecba172'}, {'OpenMPI-4.1.5_fix_opal_unsupported_key.patch': '4375a58a18c8bced14cc5978f98a7f2395cc6a9c07dd65b1c28f53294cad4385'}] (type: ) +== 2025-01-23 12:34:21,079 easyconfig.py:689 INFO setting easyconfig parameter configopts: value --with-cuda=internal (type: ) +== 2025-01-23 12:34:21,079 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('zlib', '1.2.13'), ('hwloc', '2.9.1'), ('libevent', '2.1.12'), ('UCX', '1.14.1'), ('libfabric', '1.18.0'), ('PMIx', '4.2.4'), ('UCC', '1.2.0')] (type: ) +== 2025-01-23 12:34:21,079 easyconfig.py:689 INFO setting easyconfig parameter description: value The Open MPI Project is an open source MPI-3 implementation. (type: ) +== 2025-01-23 12:34:21,080 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://www.open-mpi.org/ (type: ) +== 2025-01-23 12:34:21,080 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value mpi (type: ) +== 2025-01-23 12:34:21,080 easyconfig.py:689 INFO setting easyconfig parameter name: value OpenMPI (type: ) +== 2025-01-23 12:34:21,080 easyconfig.py:689 INFO setting easyconfig parameter patches: value ['OpenMPI-4.1.1_build-with-internal-cuda-header.patch', 'OpenMPI-4.1.1_opal-datatype-cuda-performance.patch', 'OpenMPI-4.1.5_fix-pmix3x.patch', 'OpenMPI-4.1.x_add_atomic_wmb.patch', 'OpenMPI-4.1.5_fix_opal_unsupported_key.patch'] (type: ) +== 2025-01-23 12:34:21,080 easyconfig.py:689 INFO setting easyconfig parameter preconfigopts: value cd config && autom4te --language=m4sh opal_get_version.m4sh -o opal_get_version.sh && cd .. && autoconf && autoheader && aclocal && automake && (type: ) +== 2025-01-23 12:34:21,080 easyconfig.py:689 INFO setting easyconfig parameter source_urls: value ['https://www.open-mpi.org/software/ompi/v%(version_major_minor)s/downloads'] (type: ) +== 2025-01-23 12:34:21,080 easyconfig.py:689 INFO setting easyconfig parameter sources: value ['%(namelower)s-%(version)s.tar.bz2'] (type: ) +== 2025-01-23 12:34:21,080 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'GCC', 'version': '12.3.0'} (type: ) +== 2025-01-23 12:34:21,080 easyconfig.py:689 INFO setting easyconfig parameter version: value 4.1.5 (type: ) +== 2025-01-23 12:34:21,080 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,080 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,081 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,081 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,082 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,082 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,082 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,082 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,082 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,082 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,083 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,083 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,083 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,084 easyconfig.py:1913 INFO Derived full easyblock module path for Bundle: easybuild.easyblocks.generic.bundle +== 2025-01-23 12:34:21,084 easyconfig.py:1962 INFO Successfully obtained class 'Bundle' for easyblock 'Bundle' (software name 'GCC') +== 2025-01-23 12:34:21,084 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/g/GCC/GCC-12.3.0.eb with rawcontent: easyblock = 'Bundle' + +name = 'GCC' +version = '12.3.0' + +homepage = 'https://gcc.gnu.org/' +description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...).""" + +toolchain = SYSTEM + +dependencies = [ + ('GCCcore', version), + # binutils built on top of GCCcore, which was built on top of binutils (built with system toolchain) + ('binutils', '2.40', '', ('GCCcore', version)), +] + +altroot = 'GCCcore' +altversion = 'GCCcore' + +# this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS) +moduleclass = 'compiler' + +== 2025-01-23 12:34:21,084 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,084 easyconfig.py:689 INFO setting easyconfig parameter altroot: value GCCcore (type: ) +== 2025-01-23 12:34:21,084 easyconfig.py:689 INFO setting easyconfig parameter altversion: value GCCcore (type: ) +== 2025-01-23 12:34:21,084 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('GCCcore', '12.3.0'), ('binutils', '2.40', '', ('GCCcore', '12.3.0'))] (type: ) +== 2025-01-23 12:34:21,084 easyconfig.py:689 INFO setting easyconfig parameter description: value The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). (type: ) +== 2025-01-23 12:34:21,084 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value Bundle (type: ) +== 2025-01-23 12:34:21,084 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://gcc.gnu.org/ (type: ) +== 2025-01-23 12:34:21,084 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value compiler (type: ) +== 2025-01-23 12:34:21,085 easyconfig.py:689 INFO setting easyconfig parameter name: value GCC (type: ) +== 2025-01-23 12:34:21,085 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,085 easyconfig.py:689 INFO setting easyconfig parameter version: value 12.3.0 (type: ) +== 2025-01-23 12:34:21,085 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,085 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,086 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,086 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,086 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='gcc', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='gcc', name='GCC', nameletter='G', nameletterlower='g', namelower='gcc', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='12.3.0', version_major='12', version_major_minor='12.3', version_minor='3', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,087 easyconfig.py:869 INFO Validating easyconfig +== 2025-01-23 12:34:21,087 easyconfig.py:874 INFO Checking OS dependencies +== 2025-01-23 12:34:21,087 easyconfig.py:929 INFO OS dependencies ok: [] +== 2025-01-23 12:34:21,087 easyconfig.py:879 INFO Checking skipsteps +== 2025-01-23 12:34:21,087 easyconfig.py:884 INFO Checking build option lists +== 2025-01-23 12:34:21,087 easyconfig.py:887 INFO Checking licenses +== 2025-01-23 12:34:21,101 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='openmpi', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='openmpi', name='OpenMPI', nameletter='O', nameletterlower='o', namelower='openmpi', perlmajver='5', perlminver='36', perlshortver='5.36', perlver='5.36.1', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='GCC', toolchain_version='12.3.0', version='4.1.5', version_major='4', version_major_minor='4.1', version_minor='1', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,103 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,104 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,105 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,105 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,105 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,105 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,105 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,105 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,106 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,106 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,169 easyconfig.py:1913 INFO Derived full easyblock module path for EB_GCC: easybuild.easyblocks.gcc +== 2025-01-23 12:34:21,169 easyconfig.py:1962 INFO Successfully obtained class 'EB_GCC' for easyblock 'EB_GCC' (software name 'GCCcore') +== 2025-01-23 12:34:21,169 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/g/GCCcore/GCCcore-12.3.0.eb with rawcontent: easyblock = 'EB_GCC' + +name = 'GCCcore' +version = '12.3.0' + +homepage = 'https://gcc.gnu.org/' +description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...).""" + +toolchain = SYSTEM + +source_urls = [ + 'https://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'https://sourceware.org/pub/gcc/releases/gcc-%(version)s', # fallback URL for GCC + 'https://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'https://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR + 'https://ftpmirror.gnu.org/gnu/mpc', # idem for MPC + 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies + 'https://gcc.gnu.org/pub/gcc/infrastructure/', # HTTPS mirror for GCC dependencies + 'https://libisl.sourceforge.io/', # fallback URL for isl + 'https://sourceware.org/pub/newlib/', # for newlib + 'https://github.com/MentorEmbedded/nvptx-tools/archive', # for nvptx-tools +] +sources = [ + 'gcc-%(version)s.tar.gz', + 'gmp-6.2.1.tar.bz2', + 'mpfr-4.2.0.tar.bz2', + 'mpc-1.3.1.tar.gz', + 'isl-0.26.tar.bz2', + 'newlib-4.3.0.20230120.tar.gz', + {'download_filename': '93e0090.tar.gz', 'filename': 'nvptx-tools-20230122.tar.gz'}, +] +patches = [ + 'GCCcore-6.2.0-fix-find-isl.patch', + 'GCCcore-9.3.0_gmp-c99.patch', + 'GCCcore-12.1.0_fix-double-destruct.patch', + 'GCCcore-12.2.0_fix-avx512-misoptimization.patch', + 'GCCcore-12.2.0_improve-cuda-compatibility.patch', + 'GCCcore-12.x_riscv_multiarch_support.patch', + 'GCCcore-13.2.0_fix_slp_and_loop_mask_len.patch', +] +checksums = [ + {'gcc-12.3.0.tar.gz': '11275aa7bb34cd8ab101d01b341015499f8d9466342a2574ece93f954d92273b'}, + {'gmp-6.2.1.tar.bz2': 'eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a36b4d7c'}, + {'mpfr-4.2.0.tar.bz2': '691db39178e36fc460c046591e4b0f2a52c8f2b3ee6d750cc2eab25f1eaa999d'}, + {'mpc-1.3.1.tar.gz': 'ab642492f5cf882b74aa0cb730cd410a81edcdbec895183ce930e706c1c759b8'}, + {'isl-0.26.tar.bz2': '5eac8664e9d67be6bd0bee5085d6840b8baf738c06814df47eaf4166d9776436'}, + {'newlib-4.3.0.20230120.tar.gz': '83a62a99af59e38eb9b0c58ed092ee24d700fff43a22c03e433955113ef35150'}, + {'nvptx-tools-20230122.tar.gz': 'af05fac26e9a83d337758a5495dc35f7a7bbfd90cd09f4a5d3242d059f235e08'}, + {'GCCcore-6.2.0-fix-find-isl.patch': '5ad909606d17d851c6ad629b4fddb6c1621844218b8d139fed18c502a7696c68'}, + {'GCCcore-9.3.0_gmp-c99.patch': '0e135e1cc7cec701beea9d7d17a61bab34cfd496b4b555930016b98db99f922e'}, + {'GCCcore-12.1.0_fix-double-destruct.patch': '2e09c125318b6c15ec60f1807d77fb7d1f32b64a4e5d1c9a3da89ba2ca738d35'}, + {'GCCcore-12.2.0_fix-avx512-misoptimization.patch': + 'bb3db707727b9975b0005346ef04230a96b3ad896f004a34262a82a244b5d436'}, + {'GCCcore-12.2.0_improve-cuda-compatibility.patch': + '91d00122554b56381592229398540e63baa26d03633292a7fdf338407a4a62d5'}, + {'GCCcore-12.x_riscv_multiarch_support.patch': '92fc2b17b6943611a657904500fbf3db8160eddbcea320828d4a50a885e2778f'}, + {'GCCcore-13.2.0_fix_slp_and_loop_mask_len.patch': + 'e1d63e04bf494a2f79346ac7454372f117b63288cc18c68876a5b8bdc453cf88'}, +] + +builddependencies = [ + ('M4', '1.4.19'), + ('binutils', '2.40'), +] + +languages = ['c', 'c++', 'fortran'] + +withisl = True +withnvptx = True + +# Perl is only required when building with NVPTX support +if withnvptx: + osdependencies = ['perl'] + +moduleclass = 'compiler' + +== 2025-01-23 12:34:21,170 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,170 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('M4', '1.4.19'), ('binutils', '2.40')] (type: ) +== 2025-01-23 12:34:21,170 easyconfig.py:689 INFO setting easyconfig parameter checksums: value [{'gcc-12.3.0.tar.gz': '11275aa7bb34cd8ab101d01b341015499f8d9466342a2574ece93f954d92273b'}, {'gmp-6.2.1.tar.bz2': 'eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a36b4d7c'}, {'mpfr-4.2.0.tar.bz2': '691db39178e36fc460c046591e4b0f2a52c8f2b3ee6d750cc2eab25f1eaa999d'}, {'mpc-1.3.1.tar.gz': 'ab642492f5cf882b74aa0cb730cd410a81edcdbec895183ce930e706c1c759b8'}, {'isl-0.26.tar.bz2': '5eac8664e9d67be6bd0bee5085d6840b8baf738c06814df47eaf4166d9776436'}, {'newlib-4.3.0.20230120.tar.gz': '83a62a99af59e38eb9b0c58ed092ee24d700fff43a22c03e433955113ef35150'}, {'nvptx-tools-20230122.tar.gz': 'af05fac26e9a83d337758a5495dc35f7a7bbfd90cd09f4a5d3242d059f235e08'}, {'GCCcore-6.2.0-fix-find-isl.patch': '5ad909606d17d851c6ad629b4fddb6c1621844218b8d139fed18c502a7696c68'}, {'GCCcore-9.3.0_gmp-c99.patch': '0e135e1cc7cec701beea9d7d17a61bab34cfd496b4b555930016b98db99f922e'}, {'GCCcore-12.1.0_fix-double-destruct.patch': '2e09c125318b6c15ec60f1807d77fb7d1f32b64a4e5d1c9a3da89ba2ca738d35'}, {'GCCcore-12.2.0_fix-avx512-misoptimization.patch': 'bb3db707727b9975b0005346ef04230a96b3ad896f004a34262a82a244b5d436'}, {'GCCcore-12.2.0_improve-cuda-compatibility.patch': '91d00122554b56381592229398540e63baa26d03633292a7fdf338407a4a62d5'}, {'GCCcore-12.x_riscv_multiarch_support.patch': '92fc2b17b6943611a657904500fbf3db8160eddbcea320828d4a50a885e2778f'}, {'GCCcore-13.2.0_fix_slp_and_loop_mask_len.patch': 'e1d63e04bf494a2f79346ac7454372f117b63288cc18c68876a5b8bdc453cf88'}] (type: ) +== 2025-01-23 12:34:21,170 easyconfig.py:689 INFO setting easyconfig parameter description: value The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). (type: ) +== 2025-01-23 12:34:21,170 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value EB_GCC (type: ) +== 2025-01-23 12:34:21,170 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://gcc.gnu.org/ (type: ) +== 2025-01-23 12:34:21,170 easyconfig.py:689 INFO setting easyconfig parameter languages: value ['c', 'c++', 'fortran'] (type: ) +== 2025-01-23 12:34:21,170 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value compiler (type: ) +== 2025-01-23 12:34:21,170 easyconfig.py:689 INFO setting easyconfig parameter name: value GCCcore (type: ) +== 2025-01-23 12:34:21,171 easyconfig.py:689 INFO setting easyconfig parameter osdependencies: value ['perl'] (type: ) +== 2025-01-23 12:34:21,171 easyconfig.py:689 INFO setting easyconfig parameter patches: value ['GCCcore-6.2.0-fix-find-isl.patch', 'GCCcore-9.3.0_gmp-c99.patch', 'GCCcore-12.1.0_fix-double-destruct.patch', 'GCCcore-12.2.0_fix-avx512-misoptimization.patch', 'GCCcore-12.2.0_improve-cuda-compatibility.patch', 'GCCcore-12.x_riscv_multiarch_support.patch', 'GCCcore-13.2.0_fix_slp_and_loop_mask_len.patch'] (type: ) +== 2025-01-23 12:34:21,171 easyconfig.py:689 INFO setting easyconfig parameter source_urls: value ['https://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', 'https://sourceware.org/pub/gcc/releases/gcc-%(version)s', 'https://ftpmirror.gnu.org/gnu/gmp', 'https://ftpmirror.gnu.org/gnu/mpfr', 'https://ftpmirror.gnu.org/gnu/mpc', 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', 'https://gcc.gnu.org/pub/gcc/infrastructure/', 'https://libisl.sourceforge.io/', 'https://sourceware.org/pub/newlib/', 'https://github.com/MentorEmbedded/nvptx-tools/archive'] (type: ) +== 2025-01-23 12:34:21,171 easyconfig.py:689 INFO setting easyconfig parameter sources: value ['gcc-%(version)s.tar.gz', 'gmp-6.2.1.tar.bz2', 'mpfr-4.2.0.tar.bz2', 'mpc-1.3.1.tar.gz', 'isl-0.26.tar.bz2', 'newlib-4.3.0.20230120.tar.gz', {'download_filename': '93e0090.tar.gz', 'filename': 'nvptx-tools-20230122.tar.gz'}] (type: ) +== 2025-01-23 12:34:21,171 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,171 easyconfig.py:689 INFO setting easyconfig parameter version: value 12.3.0 (type: ) +== 2025-01-23 12:34:21,171 easyconfig.py:689 INFO setting easyconfig parameter withisl: value True (type: ) +== 2025-01-23 12:34:21,171 easyconfig.py:689 INFO setting easyconfig parameter withnvptx: value True (type: ) +== 2025-01-23 12:34:21,171 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,171 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,172 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,172 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,173 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='gcccore', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='gcccore', name='GCCcore', nameletter='G', nameletterlower='g', namelower='gcccore', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='12.3.0', version_major='12', version_major_minor='12.3', version_minor='3', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,173 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,175 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,176 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,176 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,176 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,176 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,176 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,176 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,177 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,177 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,192 easyconfig.py:1945 INFO Successfully obtained EB_binutils class instance from easybuild.easyblocks.binutils +== 2025-01-23 12:34:21,192 easyconfig.py:1962 INFO Successfully obtained class 'EB_binutils' for easyblock 'None' (software name 'binutils') +== 2025-01-23 12:34:21,193 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/b/binutils/binutils-2.40-GCCcore-12.3.0.eb with rawcontent: name = 'binutils' +version = '2.40' + +homepage = 'https://directory.fsf.org/project/binutils/' +description = "binutils: GNU binary utilities" + +toolchain = {'name': 'GCCcore', 'version': '12.3.0'} + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['d7f82c4047decf43a6f769ac32456a92ddb6932409a585c633cdd4e9df23d956'] + +builddependencies = [ + ('flex', '2.6.4'), + ('Bison', '3.8.2'), + # use same binutils version that was used when building GCC toolchain, to 'bootstrap' this binutils + ('binutils', version, '', SYSTEM) +] + +dependencies = [ + # zlib is a runtime dep to avoid that it gets embedded in libbfd.so, + # see https://github.com/easybuilders/easybuild-easyblocks/issues/1350 + ('zlib', '1.2.13'), +] + +# avoid build failure when makeinfo command is not available +# see https://sourceware.org/bugzilla/show_bug.cgi?id=15345 +buildopts = 'MAKEINFO=true' +installopts = buildopts + +moduleclass = 'tools' + +== 2025-01-23 12:34:21,193 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('flex', '2.6.4'), ('Bison', '3.8.2'), ('binutils', '2.40', '', {'name': 'system', 'version': 'system'})] (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter buildopts: value MAKEINFO=true (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter checksums: value ['d7f82c4047decf43a6f769ac32456a92ddb6932409a585c633cdd4e9df23d956'] (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('zlib', '1.2.13')] (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter description: value binutils: GNU binary utilities (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://directory.fsf.org/project/binutils/ (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter installopts: value MAKEINFO=true (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value tools (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter name: value binutils (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter source_urls: value ['https://ftpmirror.gnu.org/gnu/%(namelower)s'] (type: ) +== 2025-01-23 12:34:21,193 easyconfig.py:689 INFO setting easyconfig parameter sources: value ['%(name)s-%(version)s.tar.gz'] (type: ) +== 2025-01-23 12:34:21,194 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'GCCcore', 'version': '12.3.0'} (type: ) +== 2025-01-23 12:34:21,194 easyconfig.py:689 INFO setting easyconfig parameter version: value 2.40 (type: ) +== 2025-01-23 12:34:21,194 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,194 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,195 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,195 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,195 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,196 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,196 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,196 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,196 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,196 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,196 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,197 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,197 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,198 easyconfig.py:1913 INFO Derived full easyblock module path for EB_GCC: easybuild.easyblocks.gcc +== 2025-01-23 12:34:21,198 easyconfig.py:1962 INFO Successfully obtained class 'EB_GCC' for easyblock 'EB_GCC' (software name 'GCCcore') +== 2025-01-23 12:34:21,198 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/g/GCCcore/GCCcore-12.3.0.eb with rawcontent: easyblock = 'EB_GCC' + +name = 'GCCcore' +version = '12.3.0' + +homepage = 'https://gcc.gnu.org/' +description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...).""" + +toolchain = SYSTEM + +source_urls = [ + 'https://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror + 'https://sourceware.org/pub/gcc/releases/gcc-%(version)s', # fallback URL for GCC + 'https://ftpmirror.gnu.org/gnu/gmp', # idem for GMP + 'https://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR + 'https://ftpmirror.gnu.org/gnu/mpc', # idem for MPC + 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies + 'https://gcc.gnu.org/pub/gcc/infrastructure/', # HTTPS mirror for GCC dependencies + 'https://libisl.sourceforge.io/', # fallback URL for isl + 'https://sourceware.org/pub/newlib/', # for newlib + 'https://github.com/MentorEmbedded/nvptx-tools/archive', # for nvptx-tools +] +sources = [ + 'gcc-%(version)s.tar.gz', + 'gmp-6.2.1.tar.bz2', + 'mpfr-4.2.0.tar.bz2', + 'mpc-1.3.1.tar.gz', + 'isl-0.26.tar.bz2', + 'newlib-4.3.0.20230120.tar.gz', + {'download_filename': '93e0090.tar.gz', 'filename': 'nvptx-tools-20230122.tar.gz'}, +] +patches = [ + 'GCCcore-6.2.0-fix-find-isl.patch', + 'GCCcore-9.3.0_gmp-c99.patch', + 'GCCcore-12.1.0_fix-double-destruct.patch', + 'GCCcore-12.2.0_fix-avx512-misoptimization.patch', + 'GCCcore-12.2.0_improve-cuda-compatibility.patch', + 'GCCcore-12.x_riscv_multiarch_support.patch', + 'GCCcore-13.2.0_fix_slp_and_loop_mask_len.patch', +] +checksums = [ + {'gcc-12.3.0.tar.gz': '11275aa7bb34cd8ab101d01b341015499f8d9466342a2574ece93f954d92273b'}, + {'gmp-6.2.1.tar.bz2': 'eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a36b4d7c'}, + {'mpfr-4.2.0.tar.bz2': '691db39178e36fc460c046591e4b0f2a52c8f2b3ee6d750cc2eab25f1eaa999d'}, + {'mpc-1.3.1.tar.gz': 'ab642492f5cf882b74aa0cb730cd410a81edcdbec895183ce930e706c1c759b8'}, + {'isl-0.26.tar.bz2': '5eac8664e9d67be6bd0bee5085d6840b8baf738c06814df47eaf4166d9776436'}, + {'newlib-4.3.0.20230120.tar.gz': '83a62a99af59e38eb9b0c58ed092ee24d700fff43a22c03e433955113ef35150'}, + {'nvptx-tools-20230122.tar.gz': 'af05fac26e9a83d337758a5495dc35f7a7bbfd90cd09f4a5d3242d059f235e08'}, + {'GCCcore-6.2.0-fix-find-isl.patch': '5ad909606d17d851c6ad629b4fddb6c1621844218b8d139fed18c502a7696c68'}, + {'GCCcore-9.3.0_gmp-c99.patch': '0e135e1cc7cec701beea9d7d17a61bab34cfd496b4b555930016b98db99f922e'}, + {'GCCcore-12.1.0_fix-double-destruct.patch': '2e09c125318b6c15ec60f1807d77fb7d1f32b64a4e5d1c9a3da89ba2ca738d35'}, + {'GCCcore-12.2.0_fix-avx512-misoptimization.patch': + 'bb3db707727b9975b0005346ef04230a96b3ad896f004a34262a82a244b5d436'}, + {'GCCcore-12.2.0_improve-cuda-compatibility.patch': + '91d00122554b56381592229398540e63baa26d03633292a7fdf338407a4a62d5'}, + {'GCCcore-12.x_riscv_multiarch_support.patch': '92fc2b17b6943611a657904500fbf3db8160eddbcea320828d4a50a885e2778f'}, + {'GCCcore-13.2.0_fix_slp_and_loop_mask_len.patch': + 'e1d63e04bf494a2f79346ac7454372f117b63288cc18c68876a5b8bdc453cf88'}, +] + +builddependencies = [ + ('M4', '1.4.19'), + ('binutils', '2.40'), +] + +languages = ['c', 'c++', 'fortran'] + +withisl = True +withnvptx = True + +# Perl is only required when building with NVPTX support +if withnvptx: + osdependencies = ['perl'] + +moduleclass = 'compiler' + +== 2025-01-23 12:34:21,198 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('M4', '1.4.19'), ('binutils', '2.40')] (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter checksums: value [{'gcc-12.3.0.tar.gz': '11275aa7bb34cd8ab101d01b341015499f8d9466342a2574ece93f954d92273b'}, {'gmp-6.2.1.tar.bz2': 'eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a36b4d7c'}, {'mpfr-4.2.0.tar.bz2': '691db39178e36fc460c046591e4b0f2a52c8f2b3ee6d750cc2eab25f1eaa999d'}, {'mpc-1.3.1.tar.gz': 'ab642492f5cf882b74aa0cb730cd410a81edcdbec895183ce930e706c1c759b8'}, {'isl-0.26.tar.bz2': '5eac8664e9d67be6bd0bee5085d6840b8baf738c06814df47eaf4166d9776436'}, {'newlib-4.3.0.20230120.tar.gz': '83a62a99af59e38eb9b0c58ed092ee24d700fff43a22c03e433955113ef35150'}, {'nvptx-tools-20230122.tar.gz': 'af05fac26e9a83d337758a5495dc35f7a7bbfd90cd09f4a5d3242d059f235e08'}, {'GCCcore-6.2.0-fix-find-isl.patch': '5ad909606d17d851c6ad629b4fddb6c1621844218b8d139fed18c502a7696c68'}, {'GCCcore-9.3.0_gmp-c99.patch': '0e135e1cc7cec701beea9d7d17a61bab34cfd496b4b555930016b98db99f922e'}, {'GCCcore-12.1.0_fix-double-destruct.patch': '2e09c125318b6c15ec60f1807d77fb7d1f32b64a4e5d1c9a3da89ba2ca738d35'}, {'GCCcore-12.2.0_fix-avx512-misoptimization.patch': 'bb3db707727b9975b0005346ef04230a96b3ad896f004a34262a82a244b5d436'}, {'GCCcore-12.2.0_improve-cuda-compatibility.patch': '91d00122554b56381592229398540e63baa26d03633292a7fdf338407a4a62d5'}, {'GCCcore-12.x_riscv_multiarch_support.patch': '92fc2b17b6943611a657904500fbf3db8160eddbcea320828d4a50a885e2778f'}, {'GCCcore-13.2.0_fix_slp_and_loop_mask_len.patch': 'e1d63e04bf494a2f79346ac7454372f117b63288cc18c68876a5b8bdc453cf88'}] (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter description: value The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value EB_GCC (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://gcc.gnu.org/ (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter languages: value ['c', 'c++', 'fortran'] (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value compiler (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter name: value GCCcore (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter osdependencies: value ['perl'] (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter patches: value ['GCCcore-6.2.0-fix-find-isl.patch', 'GCCcore-9.3.0_gmp-c99.patch', 'GCCcore-12.1.0_fix-double-destruct.patch', 'GCCcore-12.2.0_fix-avx512-misoptimization.patch', 'GCCcore-12.2.0_improve-cuda-compatibility.patch', 'GCCcore-12.x_riscv_multiarch_support.patch', 'GCCcore-13.2.0_fix_slp_and_loop_mask_len.patch'] (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter source_urls: value ['https://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', 'https://sourceware.org/pub/gcc/releases/gcc-%(version)s', 'https://ftpmirror.gnu.org/gnu/gmp', 'https://ftpmirror.gnu.org/gnu/mpfr', 'https://ftpmirror.gnu.org/gnu/mpc', 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', 'https://gcc.gnu.org/pub/gcc/infrastructure/', 'https://libisl.sourceforge.io/', 'https://sourceware.org/pub/newlib/', 'https://github.com/MentorEmbedded/nvptx-tools/archive'] (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter sources: value ['gcc-%(version)s.tar.gz', 'gmp-6.2.1.tar.bz2', 'mpfr-4.2.0.tar.bz2', 'mpc-1.3.1.tar.gz', 'isl-0.26.tar.bz2', 'newlib-4.3.0.20230120.tar.gz', {'download_filename': '93e0090.tar.gz', 'filename': 'nvptx-tools-20230122.tar.gz'}] (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter version: value 12.3.0 (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter withisl: value True (type: ) +== 2025-01-23 12:34:21,199 easyconfig.py:689 INFO setting easyconfig parameter withnvptx: value True (type: ) +== 2025-01-23 12:34:21,199 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,199 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,200 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,201 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,201 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='gcccore', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='gcccore', name='GCCcore', nameletter='G', nameletterlower='g', namelower='gcccore', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='12.3.0', version_major='12', version_major_minor='12.3', version_minor='3', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,202 easyconfig.py:869 INFO Validating easyconfig +== 2025-01-23 12:34:21,202 easyconfig.py:874 INFO Checking OS dependencies +== 2025-01-23 12:34:21,202 filetools.py:528 INFO Command rpm found at /usr/bin/rpm +== 2025-01-23 12:34:21,202 run.py:251 INFO Using /bin/bash as shell for running cmd: unset LD_LIBRARY_PATH && rpm -q perl +== 2025-01-23 12:34:21,202 run.py:260 INFO running cmd: unset LD_LIBRARY_PATH && rpm -q perl +== 2025-01-23 12:34:21,214 easyconfig.py:929 INFO OS dependencies ok: ['perl'] +== 2025-01-23 12:34:21,214 easyconfig.py:879 INFO Checking skipsteps +== 2025-01-23 12:34:21,214 easyconfig.py:884 INFO Checking build option lists +== 2025-01-23 12:34:21,214 easyconfig.py:887 INFO Checking licenses +== 2025-01-23 12:34:21,216 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='binutils', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='binutils', name='binutils', nameletter='b', nameletterlower='b', namelower='binutils', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='GCCcore', toolchain_version='12.3.0', version='2.40', version_major='2', version_major_minor='2.40', version_minor='40', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,218 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,221 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,221 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,221 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,221 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,222 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,222 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,222 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,222 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,222 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,223 easyconfig.py:1913 INFO Derived full easyblock module path for ConfigureMake: easybuild.easyblocks.generic.configuremake +== 2025-01-23 12:34:21,223 easyconfig.py:1962 INFO Successfully obtained class 'ConfigureMake' for easyblock 'ConfigureMake' (software name 'M4') +== 2025-01-23 12:34:21,223 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/m/M4/M4-1.4.19.eb with rawcontent: easyblock = 'ConfigureMake' + +name = 'M4' +version = '1.4.19' + +homepage = 'https://www.gnu.org/software/m4/m4.html' + +description = """ + GNU M4 is an implementation of the traditional Unix macro processor. It is + mostly SVR4 compatible although it has some extensions (for example, handling + more than 9 positional parameters to macros). GNU M4 also has built-in + functions for including files, running shell commands, doing arithmetic, etc. +""" + +toolchain = SYSTEM + +source_urls = [GNU_SOURCE] +sources = [SOURCELOWER_TAR_GZ] + +checksums = ['3be4a26d825ffdfda52a56fc43246456989a3630093cced3fbddf4771ee58a70'] + +# '-fgnu89-inline' is required to avoid linking errors with older glibc's, +# see https://github.com/easybuilders/easybuild-easyconfigs/issues/529 +configopts = "--enable-c++ CPPFLAGS=-fgnu89-inline" + +sanity_check_paths = { + 'files': ['bin/m4'], + 'dirs': [], +} + +moduleclass = 'devel' + +== 2025-01-23 12:34:21,223 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter checksums: value ['3be4a26d825ffdfda52a56fc43246456989a3630093cced3fbddf4771ee58a70'] (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter configopts: value --enable-c++ CPPFLAGS=-fgnu89-inline (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter description: value + GNU M4 is an implementation of the traditional Unix macro processor. It is + mostly SVR4 compatible although it has some extensions (for example, handling + more than 9 positional parameters to macros). GNU M4 also has built-in + functions for including files, running shell commands, doing arithmetic, etc. + (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value ConfigureMake (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://www.gnu.org/software/m4/m4.html (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value devel (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter name: value M4 (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter sanity_check_paths: value {'files': ['bin/m4'], 'dirs': []} (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter source_urls: value ['https://ftpmirror.gnu.org/gnu/%(namelower)s'] (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter sources: value ['%(namelower)s-%(version)s.tar.gz'] (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,224 easyconfig.py:689 INFO setting easyconfig parameter version: value 1.4.19 (type: ) +== 2025-01-23 12:34:21,224 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,224 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,225 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,225 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,226 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='m4', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='m4', name='M4', nameletter='M', nameletterlower='m', namelower='m4', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='1.4.19', version_major='1', version_major_minor='1.4', version_minor='4', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,226 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,227 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,227 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,227 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,227 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,228 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,228 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,228 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,228 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,228 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,229 easyconfig.py:1945 INFO Successfully obtained EB_binutils class instance from easybuild.easyblocks.binutils +== 2025-01-23 12:34:21,229 easyconfig.py:1962 INFO Successfully obtained class 'EB_binutils' for easyblock 'None' (software name 'binutils') +== 2025-01-23 12:34:21,229 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/b/binutils/binutils-2.40.eb with rawcontent: name = 'binutils' +version = '2.40' + +homepage = 'https://directory.fsf.org/project/binutils/' + +description = "binutils: GNU binary utilities" + +toolchain = SYSTEM + +source_urls = [GNU_SOURCE] +sources = [SOURCE_TAR_GZ] +checksums = ['d7f82c4047decf43a6f769ac32456a92ddb6932409a585c633cdd4e9df23d956'] + +builddependencies = [ + ('flex', '2.6.4'), + ('Bison', '3.8.2'), + # zlib required, but being linked in statically, so not a runtime dep + ('zlib', '1.2.13'), +] + +# avoid build failure when makeinfo command is not available +# see https://sourceware.org/bugzilla/show_bug.cgi?id=15345 +buildopts = 'MAKEINFO=true' +installopts = buildopts + +moduleclass = 'tools' + +== 2025-01-23 12:34:21,229 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,229 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('flex', '2.6.4'), ('Bison', '3.8.2'), ('zlib', '1.2.13')] (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter buildopts: value MAKEINFO=true (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter checksums: value ['d7f82c4047decf43a6f769ac32456a92ddb6932409a585c633cdd4e9df23d956'] (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter description: value binutils: GNU binary utilities (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://directory.fsf.org/project/binutils/ (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter installopts: value MAKEINFO=true (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value tools (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter name: value binutils (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter source_urls: value ['https://ftpmirror.gnu.org/gnu/%(namelower)s'] (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter sources: value ['%(name)s-%(version)s.tar.gz'] (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,230 easyconfig.py:689 INFO setting easyconfig parameter version: value 2.40 (type: ) +== 2025-01-23 12:34:21,230 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,230 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,231 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,231 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,232 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='binutils', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='binutils', name='binutils', nameletter='b', nameletterlower='b', namelower='binutils', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='2.40', version_major='2', version_major_minor='2.40', version_minor='40', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,233 easyconfig.py:408 INFO Found toolchain hierarchy for toolchain {'name': 'GCCcore', 'version': '12.3.0'}: [{'name': 'GCCcore', 'version': '12.3.0'}] +== 2025-01-23 12:34:21,233 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,234 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'flex', 'version': '2.6.4', 'versionsuffix': '', 'toolchain': {'name': 'GCCcore', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,235 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,236 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Bison', 'version': '3.8.2', 'versionsuffix': '', 'toolchain': {'name': 'GCCcore', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,238 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,239 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'zlib', 'version': '1.2.13', 'versionsuffix': '', 'toolchain': {'name': 'GCCcore', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,240 easyconfig.py:408 INFO Found toolchain hierarchy for toolchain {'name': 'GCC', 'version': '12.3.0'}: [{'name': 'GCCcore', 'version': '12.3.0'}, {'name': 'GCC', 'version': '12.3.0'}] +== 2025-01-23 12:34:21,240 modules.py:628 INFO Checking whether pkgconf/1.9.5-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,240 modules.py:649 INFO Module pkgconf/1.9.5-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,242 modules.py:656 INFO Result for existence check of pkgconf/1.9.5-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,242 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,243 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,243 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'pkgconf', 'version': '1.9.5', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,245 modules.py:628 INFO Checking whether Perl/5.36.1-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,245 modules.py:649 INFO Module Perl/5.36.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,247 modules.py:656 INFO Result for existence check of Perl/5.36.1-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,247 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,250 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,250 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Perl', 'version': '5.36.1', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,252 modules.py:628 INFO Checking whether Autotools/20220317-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,252 modules.py:649 INFO Module Autotools/20220317-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,253 modules.py:656 INFO Result for existence check of Autotools/20220317-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,253 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,254 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,255 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Autotools', 'version': '20220317', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,256 modules.py:628 INFO Checking whether zlib/1.2.13-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,256 modules.py:649 INFO Module zlib/1.2.13-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,257 modules.py:656 INFO Result for existence check of zlib/1.2.13-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,258 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,258 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'zlib', 'version': '1.2.13', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,259 modules.py:628 INFO Checking whether hwloc/2.9.1-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,259 modules.py:649 INFO Module hwloc/2.9.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,260 modules.py:656 INFO Result for existence check of hwloc/2.9.1-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,260 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,261 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,261 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'hwloc', 'version': '2.9.1', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,262 modules.py:628 INFO Checking whether libevent/2.1.12-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,262 modules.py:649 INFO Module libevent/2.1.12-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,263 modules.py:656 INFO Result for existence check of libevent/2.1.12-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,263 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,264 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,268 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'libevent', 'version': '2.1.12', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,269 modules.py:628 INFO Checking whether UCX/1.14.1-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,269 modules.py:649 INFO Module UCX/1.14.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,271 modules.py:656 INFO Result for existence check of UCX/1.14.1-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,271 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,272 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,272 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'UCX', 'version': '1.14.1', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,274 modules.py:628 INFO Checking whether libfabric/1.18.0-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,274 modules.py:649 INFO Module libfabric/1.18.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,275 modules.py:656 INFO Result for existence check of libfabric/1.18.0-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,275 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,276 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,276 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'libfabric', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,278 modules.py:628 INFO Checking whether PMIx/4.2.4-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,278 modules.py:649 INFO Module PMIx/4.2.4-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,279 modules.py:656 INFO Result for existence check of PMIx/4.2.4-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,279 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,280 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,280 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'PMIx', 'version': '4.2.4', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,281 modules.py:628 INFO Checking whether UCC/1.2.0-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,282 modules.py:649 INFO Module UCC/1.2.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,283 modules.py:656 INFO Result for existence check of UCC/1.2.0-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,283 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,283 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,284 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'UCC', 'version': '1.2.0', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,285 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,286 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,287 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,287 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,287 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,287 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,287 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,287 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,287 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,287 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,288 easyconfig.py:1913 INFO Derived full easyblock module path for Bundle: easybuild.easyblocks.generic.bundle +== 2025-01-23 12:34:21,288 easyconfig.py:1962 INFO Successfully obtained class 'Bundle' for easyblock 'Bundle' (software name 'FlexiBLAS') +== 2025-01-23 12:34:21,288 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/f/FlexiBLAS/FlexiBLAS-3.3.1-GCC-12.3.0.eb with rawcontent: easyblock = 'Bundle' + +name = 'FlexiBLAS' +version = '3.3.1' + +homepage = 'https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release' +description = """FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementation +used by a program without recompiling or relinking it.""" + +toolchain = {'name': 'GCC', 'version': '12.3.0'} +local_extra_flags = "-fstack-protector-strong -fstack-clash-protection" +toolchainopts = {'pic': True, 'extra_cflags': local_extra_flags, 'extra_fflags': local_extra_flags} + +builddependencies = [ + ('CMake', '3.26.3'), + ('Python', '3.11.3'), # required for running the tests + ('BLIS', '0.9.0'), +] + +dependencies = [ + ('OpenBLAS', '0.3.23'), +] + +# note: first listed backend will be used as default by FlexiBLAS, +# unless otherwise specified via easyconfig parameter flexiblas_default +local_backends = ['OpenBLAS', 'BLIS'] + +# imkl supplies its backend via the imkl module, not as a dependency +if ARCH == 'x86_64': + local_backends.append('imkl') + +default_component_specs = {'start_dir': '%(namelower)s-%(version)s'} +sanity_check_all_components = True + +# Also build and install LAPACKE, which FlexiBLAS does not support yet +components = [ + (name, version, { + 'source_urls': + ['https://gitlab.mpi-magdeburg.mpg.de/api/v4/projects/386/packages/generic/flexiblas-source/v3.3.1/'], + 'sources': [SOURCELOWER_TAR_GZ], + 'checksums': ['bbeebf5e5a006924558fec43f49affbe1aaa4cbacfc472a9ff6066ffda142e18'], + 'backends': local_backends, + }), + ('LAPACK', '3.11.0', { + 'easyblock': 'CMakeMake', + 'source_urls': ['https://github.com/Reference-LAPACK/lapack/archive/'], + 'sources': ['v%(version)s.tar.gz'], + 'checksums': ['4b9ba79bfd4921ca820e83979db76ab3363155709444a787979e81c22285ffa9'], + 'configopts': ('-DBUILD_SHARED_LIBS=ON -DUSE_OPTIMIZED_BLAS=ON -DLAPACKE=ON ' + '-DUSE_OPTIMIZED_LAPACK=ON -DBUILD_DEPRECATED=ON ' + '-DCMAKE_INSTALL_INCLUDEDIR=%(installdir)s/include/flexiblas'), + 'sanity_check_paths': { + 'files': ['lib/liblapacke.%s' % SHLIB_EXT, 'include/flexiblas/lapacke.h'], + 'dirs': [], + }, + }), +] + +moduleclass = 'lib' + +== 2025-01-23 12:34:21,289 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('CMake', '3.26.3'), ('Python', '3.11.3'), ('BLIS', '0.9.0')] (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter components: value [('FlexiBLAS', '3.3.1', {'source_urls': ['https://gitlab.mpi-magdeburg.mpg.de/api/v4/projects/386/packages/generic/flexiblas-source/v3.3.1/'], 'sources': ['%(namelower)s-%(version)s.tar.gz'], 'checksums': ['bbeebf5e5a006924558fec43f49affbe1aaa4cbacfc472a9ff6066ffda142e18'], 'backends': ['OpenBLAS', 'BLIS', 'imkl']}), ('LAPACK', '3.11.0', {'easyblock': 'CMakeMake', 'source_urls': ['https://github.com/Reference-LAPACK/lapack/archive/'], 'sources': ['v%(version)s.tar.gz'], 'checksums': ['4b9ba79bfd4921ca820e83979db76ab3363155709444a787979e81c22285ffa9'], 'configopts': '-DBUILD_SHARED_LIBS=ON -DUSE_OPTIMIZED_BLAS=ON -DLAPACKE=ON -DUSE_OPTIMIZED_LAPACK=ON -DBUILD_DEPRECATED=ON -DCMAKE_INSTALL_INCLUDEDIR=%(installdir)s/include/flexiblas', 'sanity_check_paths': {'files': ['lib/liblapacke.so', 'include/flexiblas/lapacke.h'], 'dirs': []}})] (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter default_component_specs: value {'start_dir': '%(namelower)s-%(version)s'} (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('OpenBLAS', '0.3.23')] (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter description: value FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementation +used by a program without recompiling or relinking it. (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value Bundle (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value lib (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter name: value FlexiBLAS (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter sanity_check_all_components: value True (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'GCC', 'version': '12.3.0'} (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter toolchainopts: value {'pic': True, 'extra_cflags': '-fstack-protector-strong -fstack-clash-protection', 'extra_fflags': '-fstack-protector-strong -fstack-clash-protection'} (type: ) +== 2025-01-23 12:34:21,289 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.3.1 (type: ) +== 2025-01-23 12:34:21,289 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,290 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,291 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,291 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,292 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='flexiblas', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='flexiblas', name='FlexiBLAS', nameletter='F', nameletterlower='f', namelower='flexiblas', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='GCC', toolchain_version='12.3.0', version='3.3.1', version_major='3', version_major_minor='3.3', version_minor='3', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,293 modules.py:628 INFO Checking whether CMake/3.26.3-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,293 modules.py:649 INFO Module CMake/3.26.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,294 modules.py:656 INFO Result for existence check of CMake/3.26.3-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,295 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,296 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,300 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'CMake', 'version': '3.26.3', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,301 modules.py:628 INFO Checking whether Python/3.11.3-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,301 modules.py:649 INFO Module Python/3.11.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,302 modules.py:656 INFO Result for existence check of Python/3.11.3-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,302 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,307 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,308 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Python', 'version': '3.11.3', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,309 modules.py:628 INFO Checking whether BLIS/0.9.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,309 modules.py:649 INFO Module BLIS/0.9.0-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,310 modules.py:656 INFO Result for existence check of BLIS/0.9.0-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,310 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,311 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'BLIS', 'version': '0.9.0', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCC', 'version': '12.3.0'} +== 2025-01-23 12:34:21,313 modules.py:628 INFO Checking whether OpenBLAS/0.3.23-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,313 modules.py:649 INFO Module OpenBLAS/0.3.23-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,314 modules.py:656 INFO Result for existence check of OpenBLAS/0.3.23-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,314 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,319 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'OpenBLAS', 'version': '0.3.23', 'versionsuffix': '', 'toolchain': {'name': 'GCC', 'version': '12.3.0'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCC', 'version': '12.3.0'} +== 2025-01-23 12:34:21,320 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,322 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,322 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,322 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,322 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,322 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,322 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,323 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,323 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,323 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,334 easyconfig.py:1945 INFO Successfully obtained EB_FFTW class instance from easybuild.easyblocks.fftw +== 2025-01-23 12:34:21,335 easyconfig.py:1962 INFO Successfully obtained class 'EB_FFTW' for easyblock 'None' (software name 'FFTW') +== 2025-01-23 12:34:21,335 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/f/FFTW/FFTW-3.3.10-GCC-12.3.0.eb with rawcontent: name = 'FFTW' +version = '3.3.10' + +homepage = 'https://www.fftw.org' +description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) +in one or more dimensions, of arbitrary input size, and of both real and complex data.""" + +toolchain = {'name': 'GCC', 'version': '12.3.0'} +toolchainopts = {'pic': True} + +source_urls = [homepage] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467'] + +runtest = 'check' + +moduleclass = 'numlib' + +== 2025-01-23 12:34:21,335 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,335 easyconfig.py:689 INFO setting easyconfig parameter checksums: value ['56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467'] (type: ) +== 2025-01-23 12:34:21,335 easyconfig.py:689 INFO setting easyconfig parameter description: value FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) +in one or more dimensions, of arbitrary input size, and of both real and complex data. (type: ) +== 2025-01-23 12:34:21,335 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://www.fftw.org (type: ) +== 2025-01-23 12:34:21,335 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value numlib (type: ) +== 2025-01-23 12:34:21,335 easyconfig.py:689 INFO setting easyconfig parameter name: value FFTW (type: ) +== 2025-01-23 12:34:21,335 easyconfig.py:689 INFO setting easyconfig parameter runtest: value check (type: ) +== 2025-01-23 12:34:21,336 easyconfig.py:689 INFO setting easyconfig parameter source_urls: value ['https://www.fftw.org'] (type: ) +== 2025-01-23 12:34:21,336 easyconfig.py:689 INFO setting easyconfig parameter sources: value ['%(namelower)s-%(version)s.tar.gz'] (type: ) +== 2025-01-23 12:34:21,336 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'GCC', 'version': '12.3.0'} (type: ) +== 2025-01-23 12:34:21,336 easyconfig.py:689 INFO setting easyconfig parameter toolchainopts: value {'pic': True} (type: ) +== 2025-01-23 12:34:21,336 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.3.10 (type: ) +== 2025-01-23 12:34:21,336 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,336 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,337 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,337 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,338 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='fftw', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='fftw', name='FFTW', nameletter='F', nameletterlower='f', namelower='fftw', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='GCC', toolchain_version='12.3.0', version='3.3.10', version_major='3', version_major_minor='3.3', version_minor='3', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,338 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,339 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,340 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,340 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,340 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,340 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,340 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,340 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,340 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,341 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,344 easyconfig.py:1945 INFO Successfully obtained EB_FFTW_period_MPI class instance from easybuild.easyblocks.fftwmpi +== 2025-01-23 12:34:21,344 easyconfig.py:1962 INFO Successfully obtained class 'EB_FFTW_period_MPI' for easyblock 'None' (software name 'FFTW.MPI') +== 2025-01-23 12:34:21,344 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/f/FFTW.MPI/FFTW.MPI-3.3.10-gompi-2023a.eb with rawcontent: name = 'FFTW.MPI' +version = '3.3.10' + +homepage = 'https://www.fftw.org' +description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) +in one or more dimensions, of arbitrary input size, and of both real and complex data.""" + +toolchain = {'name': 'gompi', 'version': '2023a'} +toolchainopts = {'pic': True} + +source_urls = [homepage] +sources = ['fftw-%(version)s.tar.gz'] +checksums = ['56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467'] + +dependencies = [('FFTW', '3.3.10')] + +runtest = 'check' + +moduleclass = 'numlib' + +== 2025-01-23 12:34:21,344 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,344 easyconfig.py:689 INFO setting easyconfig parameter checksums: value ['56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467'] (type: ) +== 2025-01-23 12:34:21,344 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('FFTW', '3.3.10')] (type: ) +== 2025-01-23 12:34:21,344 easyconfig.py:689 INFO setting easyconfig parameter description: value FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) +in one or more dimensions, of arbitrary input size, and of both real and complex data. (type: ) +== 2025-01-23 12:34:21,345 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://www.fftw.org (type: ) +== 2025-01-23 12:34:21,345 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value numlib (type: ) +== 2025-01-23 12:34:21,345 easyconfig.py:689 INFO setting easyconfig parameter name: value FFTW.MPI (type: ) +== 2025-01-23 12:34:21,345 easyconfig.py:689 INFO setting easyconfig parameter runtest: value check (type: ) +== 2025-01-23 12:34:21,345 easyconfig.py:689 INFO setting easyconfig parameter source_urls: value ['https://www.fftw.org'] (type: ) +== 2025-01-23 12:34:21,345 easyconfig.py:689 INFO setting easyconfig parameter sources: value ['fftw-%(version)s.tar.gz'] (type: ) +== 2025-01-23 12:34:21,345 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'gompi', 'version': '2023a'} (type: ) +== 2025-01-23 12:34:21,345 easyconfig.py:689 INFO setting easyconfig parameter toolchainopts: value {'pic': True} (type: ) +== 2025-01-23 12:34:21,345 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.3.10 (type: ) +== 2025-01-23 12:34:21,345 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,345 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,346 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,346 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,346 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,349 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,349 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,349 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,349 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,349 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,349 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,349 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,350 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,350 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,351 easyconfig.py:1913 INFO Derived full easyblock module path for Toolchain: easybuild.easyblocks.generic.toolchain +== 2025-01-23 12:34:21,351 easyconfig.py:1962 INFO Successfully obtained class 'Toolchain' for easyblock 'Toolchain' (software name 'gompi') +== 2025-01-23 12:34:21,351 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/g/gompi/gompi-2023a.eb with rawcontent: easyblock = 'Toolchain' + +name = 'gompi' +version = '2023a' + +homepage = '(none)' +description = """GNU Compiler Collection (GCC) based compiler toolchain, + including OpenMPI for MPI support.""" + +toolchain = SYSTEM + +local_gccver = '12.3.0' + +# compiler toolchain dependencies +dependencies = [ + ('GCC', local_gccver), # includes both GCC and binutils + ('OpenMPI', '4.1.5', '', ('GCC', local_gccver)), +] + +moduleclass = 'toolchain' + +== 2025-01-23 12:34:21,351 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,351 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('GCC', '12.3.0'), ('OpenMPI', '4.1.5', '', ('GCC', '12.3.0'))] (type: ) +== 2025-01-23 12:34:21,351 easyconfig.py:689 INFO setting easyconfig parameter description: value GNU Compiler Collection (GCC) based compiler toolchain, + including OpenMPI for MPI support. (type: ) +== 2025-01-23 12:34:21,351 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value Toolchain (type: ) +== 2025-01-23 12:34:21,351 easyconfig.py:689 INFO setting easyconfig parameter homepage: value (none) (type: ) +== 2025-01-23 12:34:21,351 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value toolchain (type: ) +== 2025-01-23 12:34:21,351 easyconfig.py:689 INFO setting easyconfig parameter name: value gompi (type: ) +== 2025-01-23 12:34:21,351 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,351 easyconfig.py:689 INFO setting easyconfig parameter version: value 2023a (type: ) +== 2025-01-23 12:34:21,351 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,352 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,353 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,353 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,353 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='gompi', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='gompi', name='gompi', nameletter='g', nameletterlower='g', namelower='gompi', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='2023a', version_major='2023a', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,353 easyconfig.py:869 INFO Validating easyconfig +== 2025-01-23 12:34:21,354 easyconfig.py:874 INFO Checking OS dependencies +== 2025-01-23 12:34:21,354 easyconfig.py:929 INFO OS dependencies ok: [] +== 2025-01-23 12:34:21,354 easyconfig.py:879 INFO Checking skipsteps +== 2025-01-23 12:34:21,354 easyconfig.py:884 INFO Checking build option lists +== 2025-01-23 12:34:21,354 easyconfig.py:887 INFO Checking licenses +== 2025-01-23 12:34:21,356 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,356 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,356 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='fftw.mpi', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='fftw.mpi', mpi_cmd_prefix='mpirun -n 1', name='FFTW.MPI', nameletter='F', nameletterlower='f', namelower='fftw.mpi', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='gompi', toolchain_version='2023a', version='3.3.10', version_major='3', version_major_minor='3.3', version_minor='3', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,358 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,358 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,358 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,358 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,359 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,359 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,359 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,359 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,359 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,360 easyconfig.py:1913 INFO Derived full easyblock module path for Toolchain: easybuild.easyblocks.generic.toolchain +== 2025-01-23 12:34:21,360 easyconfig.py:1962 INFO Successfully obtained class 'Toolchain' for easyblock 'Toolchain' (software name 'gompi') +== 2025-01-23 12:34:21,360 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/g/gompi/gompi-2023a.eb with rawcontent: easyblock = 'Toolchain' + +name = 'gompi' +version = '2023a' + +homepage = '(none)' +description = """GNU Compiler Collection (GCC) based compiler toolchain, + including OpenMPI for MPI support.""" + +toolchain = SYSTEM + +local_gccver = '12.3.0' + +# compiler toolchain dependencies +dependencies = [ + ('GCC', local_gccver), # includes both GCC and binutils + ('OpenMPI', '4.1.5', '', ('GCC', local_gccver)), +] + +moduleclass = 'toolchain' + +== 2025-01-23 12:34:21,360 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,360 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('GCC', '12.3.0'), ('OpenMPI', '4.1.5', '', ('GCC', '12.3.0'))] (type: ) +== 2025-01-23 12:34:21,360 easyconfig.py:689 INFO setting easyconfig parameter description: value GNU Compiler Collection (GCC) based compiler toolchain, + including OpenMPI for MPI support. (type: ) +== 2025-01-23 12:34:21,360 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value Toolchain (type: ) +== 2025-01-23 12:34:21,361 easyconfig.py:689 INFO setting easyconfig parameter homepage: value (none) (type: ) +== 2025-01-23 12:34:21,361 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value toolchain (type: ) +== 2025-01-23 12:34:21,361 easyconfig.py:689 INFO setting easyconfig parameter name: value gompi (type: ) +== 2025-01-23 12:34:21,361 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,361 easyconfig.py:689 INFO setting easyconfig parameter version: value 2023a (type: ) +== 2025-01-23 12:34:21,361 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,361 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,362 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,362 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,363 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='gompi', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='gompi', name='gompi', nameletter='g', nameletterlower='g', namelower='gompi', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='2023a', version_major='2023a', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,364 easyconfig.py:408 INFO Found toolchain hierarchy for toolchain {'name': 'gompi', 'version': '2023a'}: [{'name': 'GCCcore', 'version': '12.3.0'}, {'name': 'GCC', 'version': '12.3.0'}, {'name': 'gompi', 'version': '2023a'}] +== 2025-01-23 12:34:21,364 modules.py:628 INFO Checking whether FFTW/3.3.10-gompi-2023a exists... +== 2025-01-23 12:34:21,364 modules.py:649 INFO Module FFTW/3.3.10-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,366 modules.py:656 INFO Result for existence check of FFTW/3.3.10-gompi-2023a module: False +== 2025-01-23 12:34:21,366 modules.py:628 INFO Checking whether FFTW/3.3.10-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,366 modules.py:649 INFO Module FFTW/3.3.10-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,367 modules.py:656 INFO Result for existence check of FFTW/3.3.10-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,367 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,367 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'FFTW', 'version': '3.3.10', 'versionsuffix': '', 'toolchain': {'name': 'gompi', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCC', 'version': '12.3.0'} +== 2025-01-23 12:34:21,367 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,369 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,370 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,370 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,370 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,370 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,370 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,370 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,370 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,371 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,404 easyconfig.py:1945 INFO Successfully obtained EB_ScaLAPACK class instance from easybuild.easyblocks.scalapack +== 2025-01-23 12:34:21,404 easyconfig.py:1962 INFO Successfully obtained class 'EB_ScaLAPACK' for easyblock 'None' (software name 'ScaLAPACK') +== 2025-01-23 12:34:21,404 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/s/ScaLAPACK/ScaLAPACK-2.2.0-gompi-2023a-fb.eb with rawcontent: name = 'ScaLAPACK' +version = '2.2.0' +versionsuffix = '-fb' + +homepage = 'https://www.netlib.org/scalapack/' +description = """The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines + redesigned for distributed memory MIMD parallel computers.""" + +toolchain = {'name': 'gompi', 'version': '2023a'} +toolchainopts = {'extra_fflags': '-lpthread', 'openmp': True, 'pic': True, 'usempi': True} + +source_urls = [homepage] +sources = [SOURCELOWER_TGZ] +patches = ['ScaLAPACK-%(version)s_fix-GCC-10.patch'] +checksums = [ + '40b9406c20735a9a3009d863318cb8d3e496fb073d201c5463df810e01ab2a57', # scalapack-2.2.0.tgz + 'f6bc3c6dee012ba4a696548a2e12b6aae932ce4fd5a142153b338839f52b5906', # ScaLAPACK-2.2.0_fix-GCC-10.patch +] + +builddependencies = [ + ('CMake', '3.26.3'), +] + +dependencies = [ + ('FlexiBLAS', '3.3.1'), +] + +# Config Opts based on AOCL User Guide: +# https://developer.amd.com/wp-content/resources/AOCL_User%20Guide_2.2.pdf + +configopts = '-DBUILD_SHARED_LIBS=ON ' +configopts += '-DBLAS_LIBRARIES="$EBROOTFLEXIBLAS/lib/libflexiblas.%s" ' % SHLIB_EXT +configopts += '-DLAPACK_LIBRARIES="$EBROOTFLEXIBLAS/lib/libflexiblas.%s" ' % SHLIB_EXT + +sanity_check_paths = { + 'files': ['lib/libscalapack.%s' % SHLIB_EXT, 'lib64/libscalapack.%s' % SHLIB_EXT], + 'dirs': ["lib", "lib64"], +} + +moduleclass = 'numlib' + +== 2025-01-23 12:34:21,405 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('CMake', '3.26.3')] (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter checksums: value ['40b9406c20735a9a3009d863318cb8d3e496fb073d201c5463df810e01ab2a57', 'f6bc3c6dee012ba4a696548a2e12b6aae932ce4fd5a142153b338839f52b5906'] (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter configopts: value -DBUILD_SHARED_LIBS=ON -DBLAS_LIBRARIES="$EBROOTFLEXIBLAS/lib/libflexiblas.so" -DLAPACK_LIBRARIES="$EBROOTFLEXIBLAS/lib/libflexiblas.so" (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('FlexiBLAS', '3.3.1')] (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter description: value The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines + redesigned for distributed memory MIMD parallel computers. (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://www.netlib.org/scalapack/ (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value numlib (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter name: value ScaLAPACK (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter patches: value ['ScaLAPACK-%(version)s_fix-GCC-10.patch'] (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter sanity_check_paths: value {'files': ['lib/libscalapack.so', 'lib64/libscalapack.so'], 'dirs': ['lib', 'lib64']} (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter source_urls: value ['https://www.netlib.org/scalapack/'] (type: ) +== 2025-01-23 12:34:21,405 easyconfig.py:689 INFO setting easyconfig parameter sources: value ['%(namelower)s-%(version)s.tgz'] (type: ) +== 2025-01-23 12:34:21,406 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'gompi', 'version': '2023a'} (type: ) +== 2025-01-23 12:34:21,406 easyconfig.py:689 INFO setting easyconfig parameter toolchainopts: value {'extra_fflags': '-lpthread', 'openmp': True, 'pic': True, 'usempi': True} (type: ) +== 2025-01-23 12:34:21,406 easyconfig.py:689 INFO setting easyconfig parameter version: value 2.2.0 (type: ) +== 2025-01-23 12:34:21,406 easyconfig.py:689 INFO setting easyconfig parameter versionsuffix: value -fb (type: ) +== 2025-01-23 12:34:21,406 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,406 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,407 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,407 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,408 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,408 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,408 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='scalapack', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='scalapack', mpi_cmd_prefix='mpirun -n 1', name='ScaLAPACK', nameletter='S', nameletterlower='s', namelower='scalapack', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='gompi', toolchain_version='2023a', version='2.2.0', version_major='2', version_major_minor='2.2', version_minor='2', versionprefix='', versionsuffix='-fb' +== 2025-01-23 12:34:21,409 modules.py:628 INFO Checking whether CMake/3.26.3-gompi-2023a exists... +== 2025-01-23 12:34:21,409 modules.py:649 INFO Module CMake/3.26.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,410 modules.py:656 INFO Result for existence check of CMake/3.26.3-gompi-2023a module: False +== 2025-01-23 12:34:21,410 modules.py:628 INFO Checking whether CMake/3.26.3-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,410 modules.py:649 INFO Module CMake/3.26.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,410 modules.py:656 INFO Result for existence check of CMake/3.26.3-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,410 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,411 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,411 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'CMake', 'version': '3.26.3', 'versionsuffix': '', 'toolchain': {'name': 'gompi', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,412 modules.py:628 INFO Checking whether FlexiBLAS/3.3.1-gompi-2023a exists... +== 2025-01-23 12:34:21,412 modules.py:649 INFO Module FlexiBLAS/3.3.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,413 modules.py:656 INFO Result for existence check of FlexiBLAS/3.3.1-gompi-2023a module: False +== 2025-01-23 12:34:21,413 modules.py:628 INFO Checking whether FlexiBLAS/3.3.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,413 modules.py:649 INFO Module FlexiBLAS/3.3.1-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,414 modules.py:656 INFO Result for existence check of FlexiBLAS/3.3.1-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,414 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,414 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'FlexiBLAS', 'version': '3.3.1', 'versionsuffix': '', 'toolchain': {'name': 'gompi', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCC', 'version': '12.3.0'} +== 2025-01-23 12:34:21,414 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,415 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,419 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,419 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,419 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,419 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,419 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,419 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,419 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,420 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,420 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,421 easyconfig.py:1913 INFO Derived full easyblock module path for Toolchain: easybuild.easyblocks.generic.toolchain +== 2025-01-23 12:34:21,421 easyconfig.py:1962 INFO Successfully obtained class 'Toolchain' for easyblock 'Toolchain' (software name 'gfbf') +== 2025-01-23 12:34:21,421 easyconfig.py:708 INFO Parsing easyconfig file /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs/g/gfbf/gfbf-2023a.eb with rawcontent: easyblock = 'Toolchain' + +name = 'gfbf' +version = '2023a' + +homepage = '(none)' +description = """GNU Compiler Collection (GCC) based compiler toolchain, including + FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW.""" + +toolchain = SYSTEM + +local_gccver = '12.3.0' + +dependencies = [ + ('GCC', local_gccver), + ('FlexiBLAS', '3.3.1', '', ('GCC', local_gccver)), + ('FFTW', '3.3.10', '', ('GCC', local_gccver)), +] + +moduleclass = 'toolchain' + +== 2025-01-23 12:34:21,421 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,421 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('GCC', '12.3.0'), ('FlexiBLAS', '3.3.1', '', ('GCC', '12.3.0')), ('FFTW', '3.3.10', '', ('GCC', '12.3.0'))] (type: ) +== 2025-01-23 12:34:21,421 easyconfig.py:689 INFO setting easyconfig parameter description: value GNU Compiler Collection (GCC) based compiler toolchain, including + FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW. (type: ) +== 2025-01-23 12:34:21,421 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value Toolchain (type: ) +== 2025-01-23 12:34:21,421 easyconfig.py:689 INFO setting easyconfig parameter homepage: value (none) (type: ) +== 2025-01-23 12:34:21,421 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value toolchain (type: ) +== 2025-01-23 12:34:21,421 easyconfig.py:689 INFO setting easyconfig parameter name: value gfbf (type: ) +== 2025-01-23 12:34:21,421 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'system', 'version': 'system'} (type: ) +== 2025-01-23 12:34:21,422 easyconfig.py:689 INFO setting easyconfig parameter version: value 2023a (type: ) +== 2025-01-23 12:34:21,422 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,422 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,423 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,423 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,423 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='gfbf', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='gfbf', name='gfbf', nameletter='g', nameletterlower='g', namelower='gfbf', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='system', toolchain_version='system', version='2023a', version_major='2023a', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,425 easyconfig.py:408 INFO Found toolchain hierarchy for toolchain {'name': 'foss', 'version': '2023a'}: [{'name': 'GCCcore', 'version': '12.3.0'}, {'name': 'GCC', 'version': '12.3.0'}, {'name': 'gfbf', 'version': '2023a'}, {'name': 'gompi', 'version': '2023a'}, {'name': 'foss', 'version': '2023a'}] +== 2025-01-23 12:34:21,425 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-foss-2023a exists... +== 2025-01-23 12:34:21,426 modules.py:649 INFO Module scikit-build-core/0.9.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,428 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-foss-2023a module: False +== 2025-01-23 12:34:21,429 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gompi-2023a exists... +== 2025-01-23 12:34:21,429 modules.py:649 INFO Module scikit-build-core/0.9.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,429 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gompi-2023a module: False +== 2025-01-23 12:34:21,430 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gfbf-2023a exists... +== 2025-01-23 12:34:21,430 modules.py:649 INFO Module scikit-build-core/0.9.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,430 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gfbf-2023a module: False +== 2025-01-23 12:34:21,430 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,431 modules.py:649 INFO Module scikit-build-core/0.9.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,431 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,431 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,432 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,432 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,432 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,432 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,433 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'scikit-build-core', 'version': '0.9.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,434 modules.py:628 INFO Checking whether hatchling/1.18.0-foss-2023a exists... +== 2025-01-23 12:34:21,434 modules.py:649 INFO Module hatchling/1.18.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,435 modules.py:656 INFO Result for existence check of hatchling/1.18.0-foss-2023a module: False +== 2025-01-23 12:34:21,436 modules.py:628 INFO Checking whether hatchling/1.18.0-gompi-2023a exists... +== 2025-01-23 12:34:21,436 modules.py:649 INFO Module hatchling/1.18.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,436 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gompi-2023a module: False +== 2025-01-23 12:34:21,436 modules.py:628 INFO Checking whether hatchling/1.18.0-gfbf-2023a exists... +== 2025-01-23 12:34:21,437 modules.py:649 INFO Module hatchling/1.18.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,437 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gfbf-2023a module: False +== 2025-01-23 12:34:21,437 modules.py:628 INFO Checking whether hatchling/1.18.0-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,437 modules.py:649 INFO Module hatchling/1.18.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,438 modules.py:656 INFO Result for existence check of hatchling/1.18.0-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,438 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,438 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,438 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,438 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,438 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,439 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'hatchling', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,440 modules.py:628 INFO Checking whether poetry/1.5.1-foss-2023a exists... +== 2025-01-23 12:34:21,440 modules.py:649 INFO Module poetry/1.5.1-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,442 modules.py:656 INFO Result for existence check of poetry/1.5.1-foss-2023a module: False +== 2025-01-23 12:34:21,442 modules.py:628 INFO Checking whether poetry/1.5.1-gompi-2023a exists... +== 2025-01-23 12:34:21,442 modules.py:649 INFO Module poetry/1.5.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,443 modules.py:656 INFO Result for existence check of poetry/1.5.1-gompi-2023a module: False +== 2025-01-23 12:34:21,443 modules.py:628 INFO Checking whether poetry/1.5.1-gfbf-2023a exists... +== 2025-01-23 12:34:21,443 modules.py:649 INFO Module poetry/1.5.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,444 modules.py:656 INFO Result for existence check of poetry/1.5.1-gfbf-2023a module: False +== 2025-01-23 12:34:21,444 modules.py:628 INFO Checking whether poetry/1.5.1-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,444 modules.py:649 INFO Module poetry/1.5.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,445 modules.py:656 INFO Result for existence check of poetry/1.5.1-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,445 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,445 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,445 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,446 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,446 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,446 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'poetry', 'version': '1.5.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,447 modules.py:628 INFO Checking whether git/2.41.0-foss-2023a-nodocs exists... +== 2025-01-23 12:34:21,447 modules.py:649 INFO Module git/2.41.0-foss-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,448 modules.py:656 INFO Result for existence check of git/2.41.0-foss-2023a-nodocs module: False +== 2025-01-23 12:34:21,448 modules.py:628 INFO Checking whether git/2.41.0-gompi-2023a-nodocs exists... +== 2025-01-23 12:34:21,448 modules.py:649 INFO Module git/2.41.0-gompi-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,449 modules.py:656 INFO Result for existence check of git/2.41.0-gompi-2023a-nodocs module: False +== 2025-01-23 12:34:21,449 modules.py:628 INFO Checking whether git/2.41.0-gfbf-2023a-nodocs exists... +== 2025-01-23 12:34:21,449 modules.py:649 INFO Module git/2.41.0-gfbf-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,450 modules.py:656 INFO Result for existence check of git/2.41.0-gfbf-2023a-nodocs module: False +== 2025-01-23 12:34:21,450 modules.py:628 INFO Checking whether git/2.41.0-GCC-12.3.0-nodocs exists... +== 2025-01-23 12:34:21,450 modules.py:649 INFO Module git/2.41.0-GCC-12.3.0-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,451 modules.py:656 INFO Result for existence check of git/2.41.0-GCC-12.3.0-nodocs module: False +== 2025-01-23 12:34:21,451 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,452 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,452 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,452 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,452 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,452 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'git', 'version': '2.41.0', 'versionsuffix': '-nodocs', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,454 modules.py:628 INFO Checking whether Python/3.11.3-foss-2023a exists... +== 2025-01-23 12:34:21,454 modules.py:649 INFO Module Python/3.11.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,455 modules.py:656 INFO Result for existence check of Python/3.11.3-foss-2023a module: False +== 2025-01-23 12:34:21,455 modules.py:628 INFO Checking whether Python/3.11.3-gompi-2023a exists... +== 2025-01-23 12:34:21,455 modules.py:649 INFO Module Python/3.11.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,455 modules.py:656 INFO Result for existence check of Python/3.11.3-gompi-2023a module: False +== 2025-01-23 12:34:21,456 modules.py:628 INFO Checking whether Python/3.11.3-gfbf-2023a exists... +== 2025-01-23 12:34:21,456 modules.py:649 INFO Module Python/3.11.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,456 modules.py:656 INFO Result for existence check of Python/3.11.3-gfbf-2023a module: False +== 2025-01-23 12:34:21,457 modules.py:628 INFO Checking whether Python/3.11.3-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,457 modules.py:649 INFO Module Python/3.11.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,457 modules.py:656 INFO Result for existence check of Python/3.11.3-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,457 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,457 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,457 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,457 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,457 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Python', 'version': '3.11.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,459 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-foss-2023a exists... +== 2025-01-23 12:34:21,459 modules.py:649 INFO Module SciPy-bundle/2023.07-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,460 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-foss-2023a module: False +== 2025-01-23 12:34:21,461 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-gompi-2023a exists... +== 2025-01-23 12:34:21,461 modules.py:649 INFO Module SciPy-bundle/2023.07-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,461 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-gompi-2023a module: False +== 2025-01-23 12:34:21,461 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,462 modules.py:649 INFO Module SciPy-bundle/2023.07-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,462 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,462 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,462 modules.py:649 INFO Module SciPy-bundle/2023.07-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,463 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,463 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,465 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,465 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,466 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'SciPy-bundle', 'version': '2023.07', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:34:21,467 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-foss-2023a exists... +== 2025-01-23 12:34:21,467 modules.py:649 INFO Module ml_dtypes/0.3.2-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,468 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-foss-2023a module: False +== 2025-01-23 12:34:21,468 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-gompi-2023a exists... +== 2025-01-23 12:34:21,468 modules.py:649 INFO Module ml_dtypes/0.3.2-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,469 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-gompi-2023a module: False +== 2025-01-23 12:34:21,469 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,469 modules.py:649 INFO Module ml_dtypes/0.3.2-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,470 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,470 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,470 modules.py:649 INFO Module ml_dtypes/0.3.2-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,471 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,471 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,472 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,472 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,473 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'ml_dtypes', 'version': '0.3.2', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:34:21,474 modules.py:628 INFO Checking whether PyYAML/6.0-foss-2023a exists... +== 2025-01-23 12:34:21,474 modules.py:649 INFO Module PyYAML/6.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,475 modules.py:656 INFO Result for existence check of PyYAML/6.0-foss-2023a module: False +== 2025-01-23 12:34:21,476 modules.py:628 INFO Checking whether PyYAML/6.0-gompi-2023a exists... +== 2025-01-23 12:34:21,476 modules.py:649 INFO Module PyYAML/6.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,476 modules.py:656 INFO Result for existence check of PyYAML/6.0-gompi-2023a module: False +== 2025-01-23 12:34:21,477 modules.py:628 INFO Checking whether PyYAML/6.0-gfbf-2023a exists... +== 2025-01-23 12:34:21,477 modules.py:649 INFO Module PyYAML/6.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,477 modules.py:656 INFO Result for existence check of PyYAML/6.0-gfbf-2023a module: False +== 2025-01-23 12:34:21,477 modules.py:628 INFO Checking whether PyYAML/6.0-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,478 modules.py:649 INFO Module PyYAML/6.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,478 modules.py:656 INFO Result for existence check of PyYAML/6.0-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,478 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,479 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,479 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,479 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,479 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,479 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'PyYAML', 'version': '6.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,481 modules.py:628 INFO Checking whether h5py/3.9.0-gompi-2023a exists... +== 2025-01-23 12:34:21,481 modules.py:649 INFO Module h5py/3.9.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,482 modules.py:656 INFO Result for existence check of h5py/3.9.0-gompi-2023a module: False +== 2025-01-23 12:34:21,482 modules.py:628 INFO Checking whether h5py/3.9.0-gfbf-2023a exists... +== 2025-01-23 12:34:21,482 modules.py:649 INFO Module h5py/3.9.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,482 modules.py:656 INFO Result for existence check of h5py/3.9.0-gfbf-2023a module: False +== 2025-01-23 12:34:21,483 modules.py:628 INFO Checking whether h5py/3.9.0-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,483 modules.py:649 INFO Module h5py/3.9.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,483 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,484 modules.py:628 INFO Checking whether h5py/3.9.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,484 modules.py:649 INFO Module h5py/3.9.0-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,484 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,484 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,485 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'h5py', 'version': '3.9.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:34:21,487 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gompi-2023a exists... +== 2025-01-23 12:34:21,487 modules.py:649 INFO Module TensorFlow/2.15.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,488 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gompi-2023a module: False +== 2025-01-23 12:34:21,488 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gfbf-2023a exists... +== 2025-01-23 12:34:21,488 modules.py:649 INFO Module TensorFlow/2.15.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,489 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gfbf-2023a module: False +== 2025-01-23 12:34:21,489 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,489 modules.py:649 INFO Module TensorFlow/2.15.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,490 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,490 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,490 modules.py:649 INFO Module TensorFlow/2.15.1-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,491 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,491 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,493 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'TensorFlow', 'version': '2.15.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:34:21,494 modules.py:628 INFO Checking whether jax/0.4.25-gompi-2023a exists... +== 2025-01-23 12:34:21,494 modules.py:649 INFO Module jax/0.4.25-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,496 modules.py:656 INFO Result for existence check of jax/0.4.25-gompi-2023a module: False +== 2025-01-23 12:34:21,496 modules.py:628 INFO Checking whether jax/0.4.25-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,496 modules.py:649 INFO Module jax/0.4.25-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,497 modules.py:656 INFO Result for existence check of jax/0.4.25-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,497 modules.py:628 INFO Checking whether jax/0.4.25-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,497 modules.py:649 INFO Module jax/0.4.25-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,498 modules.py:656 INFO Result for existence check of jax/0.4.25-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,498 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,498 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,499 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,499 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'jax', 'version': '0.4.25', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:34:21,500 modules.py:628 INFO Checking whether mpi4py/3.1.4-foss-2023a exists... +== 2025-01-23 12:34:21,500 modules.py:649 INFO Module mpi4py/3.1.4-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,502 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-foss-2023a module: False +== 2025-01-23 12:34:21,502 modules.py:628 INFO Checking whether mpi4py/3.1.4-gfbf-2023a exists... +== 2025-01-23 12:34:21,502 modules.py:649 INFO Module mpi4py/3.1.4-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,503 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-gfbf-2023a module: False +== 2025-01-23 12:34:21,503 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,503 modules.py:649 INFO Module mpi4py/3.1.4-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,504 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,504 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,504 modules.py:649 INFO Module mpi4py/3.1.4-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,505 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,505 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,505 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,506 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'mpi4py', 'version': '3.1.4', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gompi', 'version': '2023a'} +== 2025-01-23 12:34:21,506 easyconfig.py:869 INFO Validating easyconfig +== 2025-01-23 12:34:21,507 easyconfig.py:874 INFO Checking OS dependencies +== 2025-01-23 12:34:21,507 easyconfig.py:929 INFO OS dependencies ok: [] +== 2025-01-23 12:34:21,507 easyconfig.py:879 INFO Checking skipsteps +== 2025-01-23 12:34:21,507 easyconfig.py:884 INFO Checking build option lists +== 2025-01-23 12:34:21,507 easyconfig.py:887 INFO Checking licenses +== 2025-01-23 12:34:21,507 build_log.py:267 INFO resolving dependencies ... +== 2025-01-23 12:34:21,510 robot.py:473 INFO Dependency resolution complete, building as follows: [{'ec': , 'spec': '/kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit/deePMD.eb', 'short_mod_name': 'DeePDM-kit/3.0.1-foss-2023a', 'full_mod_name': 'DeePDM-kit/3.0.1-foss-2023a', 'dependencies': [], 'builddependencies': [{'full_mod_name': 'scikit-build-core/0.9.3-GCCcore-12.3.0', 'short_mod_name': 'scikit-build-core/0.9.3-GCCcore-12.3.0', 'name': 'scikit-build-core', 'version': '0.9.3', 'versionsuffix': '', 'toolchain': {'name': 'GCCcore', 'version': '12.3.0'}, 'toolchain_inherited': False, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}}, {'full_mod_name': 'hatchling/1.18.0-GCCcore-12.3.0', 'short_mod_name': 'hatchling/1.18.0-GCCcore-12.3.0', 'name': 'hatchling', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'GCCcore', 'version': '12.3.0'}, 'toolchain_inherited': False, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}}, {'full_mod_name': 'poetry/1.5.1-GCCcore-12.3.0', 'short_mod_name': 'poetry/1.5.1-GCCcore-12.3.0', 'name': 'poetry', 'version': '1.5.1', 'versionsuffix': '', 'toolchain': {'name': 'GCCcore', 'version': '12.3.0'}, 'toolchain_inherited': False, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}}, {'full_mod_name': 'git/2.41.0-GCCcore-12.3.0-nodocs', 'short_mod_name': 'git/2.41.0-GCCcore-12.3.0-nodocs', 'name': 'git', 'version': '2.41.0', 'versionsuffix': '-nodocs', 'toolchain': {'name': 'GCCcore', 'version': '12.3.0'}, 'toolchain_inherited': False, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}}], 'hiddendependencies': [], 'hidden': False}] +== 2025-01-23 12:34:21,510 build_log.py:267 INFO processing EasyBuild easyconfig /kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit/deePMD.eb +== 2025-01-23 12:34:21,510 easyblock.py:4230 INFO Resetting environment +== 2025-01-23 12:34:21,511 environment.py:114 INFO Unsetting environment variable PYTHONOPTIMIZE (value: 1) +== 2025-01-23 12:34:21,511 environment.py:114 INFO Unsetting environment variable PYTHONPATH (value: /user/gent/470/vsc47063/easybuild/easybuild-framework:/user/gent/470/vsc47063/easybuild/easybuild-easyblocks:/user/gent/470/vsc47063/easybuild/easybuild-easyconfigs::) +== 2025-01-23 12:34:21,511 environment.py:114 INFO Unsetting environment variable PYTHON_KEYRING_BACKEND (value: keyrings.alt.file.PlaintextKeyring) +== 2025-01-23 12:34:21,511 easyconfig.py:1913 INFO Derived full easyblock module path for PythonBundle: easybuild.easyblocks.generic.pythonbundle +== 2025-01-23 12:34:21,511 easyconfig.py:1962 INFO Successfully obtained class 'PythonBundle' for easyblock 'PythonBundle' (software name 'DeePDM-kit') +== 2025-01-23 12:34:21,512 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,512 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,512 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,512 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,512 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,512 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,512 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,513 easyblock.py:314 INFO This is EasyBuild 4.9.5.dev0-rb37f70756960c1686875974f8381491df280cc00 (framework: 4.9.5.dev0-rb37f70756960c1686875974f8381491df280cc00, easyblocks: 4.9.5.dev0-r3469151ce7e4f85415c877dee555aeea7691c757) on host node4016.donphan.os. +== 2025-01-23 12:34:21,513 easyblock.py:320 INFO This is easyblock PythonBundle from module easybuild.easyblocks.generic.pythonbundle (/user/gent/470/vsc47063/easybuild/easybuild-easyblocks/easybuild/easyblocks/generic/pythonbundle.py) +== 2025-01-23 12:34:21,513 easyblock.py:1069 INFO Build dir set to /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a +== 2025-01-23 12:34:21,513 easyblock.py:1126 INFO Software install dir set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a +== 2025-01-23 12:34:21,513 easyblock.py:1131 INFO Module install dir set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,513 easyblock.py:289 INFO Init completed for application name DeePDM-kit version 3.0.1 +== 2025-01-23 12:34:21,514 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:34:21,514 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:34:21,515 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:34:21,515 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:34:21,515 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:34:21,515 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:34:21,515 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:34:21,515 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:34:21,515 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:34:21,516 easyconfig.py:1913 INFO Derived full easyblock module path for PythonBundle: easybuild.easyblocks.generic.pythonbundle +== 2025-01-23 12:34:21,516 easyconfig.py:1962 INFO Successfully obtained class 'PythonBundle' for easyblock 'PythonBundle' (software name 'DeePDM-kit') +== 2025-01-23 12:34:21,516 easyconfig.py:708 INFO Parsing easyconfig file None with rawcontent: easyblock = 'PythonBundle' + +name = 'DeePDM-kit' +version = '3.0.1' +# versionsuffix = '-CUDA-%(cudaver)s' + +homepage = 'https://github.com/deepmodeling/deepmd-kit/' +description = "A deep learning package for many-body potential energy representation and molecular dynamics." + +toolchain = {'name': 'foss', 'version': '2023a'} + +# DEPS: + # OK scikit-build-core>=0.5,<0.11,!=0.6.0 + # OK 'numpy>=1.21', + # OK 'scipy', + # OK 'pyyaml', + # ok 'dargs >= 0.4.7', + # OK "h5py>=3.6.0,!=3.11.0; platform_system=='Linux' and platform_machine=='aarch64'", + # ok 'wcmatch', + # OK 'ml_dtypes', + # ok 'mendeleev', + # ok 'array-api-compat', + # ok dpdata + # parallel training deps: + # NO horovod - + # OK mpi4py + +builddependencies = [ + ('scikit-build-core', '0.9.3'), + ('hatchling', '1.18.0'), + ('poetry', '1.5.1'), + ('git', '2.41.0', '-nodocs'), +] +dependencies = [ + # ('CUDA', '12.6.0', '', SYSTEM), + ('Python', '3.11.3'), + ('SciPy-bundle', '2023.07'), + ('ml_dtypes', '0.3.2'), + ('PyYAML', '6.0'), + ('h5py', '3.9.0'), + ('TensorFlow', '2.15.1'), + ('jax', '0.4.25'), + ('mpi4py', '3.1.4'), + # ('protobuf', '24.0'), + # horovod +] + +use_pip = True +sanity_pip_check = True + +# preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' + +exts_list = [ + ('dargs', '0.4.10', { + 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], + }), + ('wcmatch', '8.5.2', { + 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], + }), + ('mendeleev', '0.20.1', { + 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + }), + ('array_api_compat', '1.10.0', { + 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], + }), + ('dpdata', '0.2.21', { + 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], + }), + ('deepmd_kit', version, { + 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], + }), +] + +# sanity_check_paths = { +# 'files': ['bin/%(name)s'], +# 'dirs': ['lib/python%(pyshortver)s/site-packages'], +# } + +# sanity_check_commands = ['%(name)s --help'] + +moduleclass = 'ai' + +# E1: + # same problem as with horovod: https://github.com/vscentrum/vsc-software-stack/issues/390#issuecomment-2304201251 + # <- during pip install deepmd-kit: + # error This file was generated by an older version of protoc + # error incompatible with your Protocol Buffer headers + # error regenerate this file with a newer version of protoc. +== 2025-01-23 12:34:21,517 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:34:21,517 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('scikit-build-core', '0.9.3'), ('hatchling', '1.18.0'), ('poetry', '1.5.1'), ('git', '2.41.0', '-nodocs')] (type: ) +== 2025-01-23 12:34:21,517 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('Python', '3.11.3'), ('SciPy-bundle', '2023.07'), ('ml_dtypes', '0.3.2'), ('PyYAML', '6.0'), ('h5py', '3.9.0'), ('TensorFlow', '2.15.1'), ('jax', '0.4.25'), ('mpi4py', '3.1.4')] (type: ) +== 2025-01-23 12:34:21,517 easyconfig.py:689 INFO setting easyconfig parameter description: value A deep learning package for many-body potential energy representation and molecular dynamics. (type: ) +== 2025-01-23 12:34:21,517 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value PythonBundle (type: ) +== 2025-01-23 12:34:21,517 easyconfig.py:689 INFO setting easyconfig parameter exts_list: value [('dargs', '0.4.10', {'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8']}), ('wcmatch', '8.5.2', {'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2']}), ('mendeleev', '0.20.1', {'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da']}), ('array_api_compat', '1.10.0', {'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad']}), ('dpdata', '0.2.21', {'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1']}), ('deepmd_kit', '3.0.1', {'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff']})] (type: ) +== 2025-01-23 12:34:21,517 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://github.com/deepmodeling/deepmd-kit/ (type: ) +== 2025-01-23 12:34:21,517 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value ai (type: ) +== 2025-01-23 12:34:21,517 easyconfig.py:689 INFO setting easyconfig parameter name: value DeePDM-kit (type: ) +== 2025-01-23 12:34:21,518 easyconfig.py:689 INFO setting easyconfig parameter sanity_pip_check: value True (type: ) +== 2025-01-23 12:34:21,518 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'foss', 'version': '2023a'} (type: ) +== 2025-01-23 12:34:21,518 easyconfig.py:689 INFO setting easyconfig parameter use_pip: value True (type: ) +== 2025-01-23 12:34:21,518 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.0.1 (type: ) +== 2025-01-23 12:34:21,518 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:34:21,518 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:34:21,519 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:34:21,519 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,520 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,520 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,520 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,522 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-foss-2023a exists... +== 2025-01-23 12:34:21,522 modules.py:649 INFO Module scikit-build-core/0.9.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,522 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-foss-2023a module: False +== 2025-01-23 12:34:21,522 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gompi-2023a exists... +== 2025-01-23 12:34:21,522 modules.py:649 INFO Module scikit-build-core/0.9.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,522 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gompi-2023a module: False +== 2025-01-23 12:34:21,523 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gfbf-2023a exists... +== 2025-01-23 12:34:21,523 modules.py:649 INFO Module scikit-build-core/0.9.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,523 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gfbf-2023a module: False +== 2025-01-23 12:34:21,523 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,523 modules.py:649 INFO Module scikit-build-core/0.9.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,523 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,523 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,524 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,524 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,524 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,524 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'scikit-build-core', 'version': '0.9.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,525 modules.py:628 INFO Checking whether hatchling/1.18.0-foss-2023a exists... +== 2025-01-23 12:34:21,525 modules.py:649 INFO Module hatchling/1.18.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,525 modules.py:656 INFO Result for existence check of hatchling/1.18.0-foss-2023a module: False +== 2025-01-23 12:34:21,526 modules.py:628 INFO Checking whether hatchling/1.18.0-gompi-2023a exists... +== 2025-01-23 12:34:21,526 modules.py:649 INFO Module hatchling/1.18.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,526 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gompi-2023a module: False +== 2025-01-23 12:34:21,526 modules.py:628 INFO Checking whether hatchling/1.18.0-gfbf-2023a exists... +== 2025-01-23 12:34:21,526 modules.py:649 INFO Module hatchling/1.18.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,526 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gfbf-2023a module: False +== 2025-01-23 12:34:21,527 modules.py:628 INFO Checking whether hatchling/1.18.0-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,527 modules.py:649 INFO Module hatchling/1.18.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,527 modules.py:656 INFO Result for existence check of hatchling/1.18.0-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,527 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,527 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,527 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,527 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,527 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'hatchling', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,529 modules.py:628 INFO Checking whether poetry/1.5.1-foss-2023a exists... +== 2025-01-23 12:34:21,529 modules.py:649 INFO Module poetry/1.5.1-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,529 modules.py:656 INFO Result for existence check of poetry/1.5.1-foss-2023a module: False +== 2025-01-23 12:34:21,529 modules.py:628 INFO Checking whether poetry/1.5.1-gompi-2023a exists... +== 2025-01-23 12:34:21,529 modules.py:649 INFO Module poetry/1.5.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,529 modules.py:656 INFO Result for existence check of poetry/1.5.1-gompi-2023a module: False +== 2025-01-23 12:34:21,530 modules.py:628 INFO Checking whether poetry/1.5.1-gfbf-2023a exists... +== 2025-01-23 12:34:21,530 modules.py:649 INFO Module poetry/1.5.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,530 modules.py:656 INFO Result for existence check of poetry/1.5.1-gfbf-2023a module: False +== 2025-01-23 12:34:21,530 modules.py:628 INFO Checking whether poetry/1.5.1-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,530 modules.py:649 INFO Module poetry/1.5.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,530 modules.py:656 INFO Result for existence check of poetry/1.5.1-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,530 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,531 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,531 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,531 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,531 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'poetry', 'version': '1.5.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,532 modules.py:628 INFO Checking whether git/2.41.0-foss-2023a-nodocs exists... +== 2025-01-23 12:34:21,532 modules.py:649 INFO Module git/2.41.0-foss-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,532 modules.py:656 INFO Result for existence check of git/2.41.0-foss-2023a-nodocs module: False +== 2025-01-23 12:34:21,533 modules.py:628 INFO Checking whether git/2.41.0-gompi-2023a-nodocs exists... +== 2025-01-23 12:34:21,533 modules.py:649 INFO Module git/2.41.0-gompi-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,533 modules.py:656 INFO Result for existence check of git/2.41.0-gompi-2023a-nodocs module: False +== 2025-01-23 12:34:21,533 modules.py:628 INFO Checking whether git/2.41.0-gfbf-2023a-nodocs exists... +== 2025-01-23 12:34:21,533 modules.py:649 INFO Module git/2.41.0-gfbf-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,533 modules.py:656 INFO Result for existence check of git/2.41.0-gfbf-2023a-nodocs module: False +== 2025-01-23 12:34:21,533 modules.py:628 INFO Checking whether git/2.41.0-GCC-12.3.0-nodocs exists... +== 2025-01-23 12:34:21,533 modules.py:649 INFO Module git/2.41.0-GCC-12.3.0-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,534 modules.py:656 INFO Result for existence check of git/2.41.0-GCC-12.3.0-nodocs module: False +== 2025-01-23 12:34:21,534 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,534 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,534 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,534 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,534 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'git', 'version': '2.41.0', 'versionsuffix': '-nodocs', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,536 modules.py:628 INFO Checking whether Python/3.11.3-foss-2023a exists... +== 2025-01-23 12:34:21,536 modules.py:649 INFO Module Python/3.11.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,536 modules.py:656 INFO Result for existence check of Python/3.11.3-foss-2023a module: False +== 2025-01-23 12:34:21,536 modules.py:628 INFO Checking whether Python/3.11.3-gompi-2023a exists... +== 2025-01-23 12:34:21,536 modules.py:649 INFO Module Python/3.11.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,536 modules.py:656 INFO Result for existence check of Python/3.11.3-gompi-2023a module: False +== 2025-01-23 12:34:21,537 modules.py:628 INFO Checking whether Python/3.11.3-gfbf-2023a exists... +== 2025-01-23 12:34:21,537 modules.py:649 INFO Module Python/3.11.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,537 modules.py:656 INFO Result for existence check of Python/3.11.3-gfbf-2023a module: False +== 2025-01-23 12:34:21,537 modules.py:628 INFO Checking whether Python/3.11.3-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,537 modules.py:649 INFO Module Python/3.11.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,537 modules.py:656 INFO Result for existence check of Python/3.11.3-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,537 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,537 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,538 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,538 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,538 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Python', 'version': '3.11.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,539 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-foss-2023a exists... +== 2025-01-23 12:34:21,539 modules.py:649 INFO Module SciPy-bundle/2023.07-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,539 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-foss-2023a module: False +== 2025-01-23 12:34:21,539 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-gompi-2023a exists... +== 2025-01-23 12:34:21,540 modules.py:649 INFO Module SciPy-bundle/2023.07-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,540 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-gompi-2023a module: False +== 2025-01-23 12:34:21,540 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,540 modules.py:649 INFO Module SciPy-bundle/2023.07-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,540 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,540 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,540 modules.py:649 INFO Module SciPy-bundle/2023.07-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,541 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,541 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,541 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,541 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'SciPy-bundle', 'version': '2023.07', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:34:21,542 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-foss-2023a exists... +== 2025-01-23 12:34:21,542 modules.py:649 INFO Module ml_dtypes/0.3.2-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,543 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-foss-2023a module: False +== 2025-01-23 12:34:21,543 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-gompi-2023a exists... +== 2025-01-23 12:34:21,543 modules.py:649 INFO Module ml_dtypes/0.3.2-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,543 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-gompi-2023a module: False +== 2025-01-23 12:34:21,543 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,543 modules.py:649 INFO Module ml_dtypes/0.3.2-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,543 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,544 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,544 modules.py:649 INFO Module ml_dtypes/0.3.2-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,544 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,544 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,544 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,544 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'ml_dtypes', 'version': '0.3.2', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:34:21,545 modules.py:628 INFO Checking whether PyYAML/6.0-foss-2023a exists... +== 2025-01-23 12:34:21,546 modules.py:649 INFO Module PyYAML/6.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,546 modules.py:656 INFO Result for existence check of PyYAML/6.0-foss-2023a module: False +== 2025-01-23 12:34:21,546 modules.py:628 INFO Checking whether PyYAML/6.0-gompi-2023a exists... +== 2025-01-23 12:34:21,546 modules.py:649 INFO Module PyYAML/6.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,546 modules.py:656 INFO Result for existence check of PyYAML/6.0-gompi-2023a module: False +== 2025-01-23 12:34:21,546 modules.py:628 INFO Checking whether PyYAML/6.0-gfbf-2023a exists... +== 2025-01-23 12:34:21,546 modules.py:649 INFO Module PyYAML/6.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,547 modules.py:656 INFO Result for existence check of PyYAML/6.0-gfbf-2023a module: False +== 2025-01-23 12:34:21,547 modules.py:628 INFO Checking whether PyYAML/6.0-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,547 modules.py:649 INFO Module PyYAML/6.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,547 modules.py:656 INFO Result for existence check of PyYAML/6.0-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,547 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,547 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,547 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,548 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,548 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'PyYAML', 'version': '6.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:34:21,549 modules.py:628 INFO Checking whether h5py/3.9.0-gompi-2023a exists... +== 2025-01-23 12:34:21,549 modules.py:649 INFO Module h5py/3.9.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,549 modules.py:656 INFO Result for existence check of h5py/3.9.0-gompi-2023a module: False +== 2025-01-23 12:34:21,549 modules.py:628 INFO Checking whether h5py/3.9.0-gfbf-2023a exists... +== 2025-01-23 12:34:21,549 modules.py:649 INFO Module h5py/3.9.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,550 modules.py:656 INFO Result for existence check of h5py/3.9.0-gfbf-2023a module: False +== 2025-01-23 12:34:21,550 modules.py:628 INFO Checking whether h5py/3.9.0-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,550 modules.py:649 INFO Module h5py/3.9.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,550 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,550 modules.py:628 INFO Checking whether h5py/3.9.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,550 modules.py:649 INFO Module h5py/3.9.0-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,550 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,551 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'h5py', 'version': '3.9.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:34:21,552 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gompi-2023a exists... +== 2025-01-23 12:34:21,552 modules.py:649 INFO Module TensorFlow/2.15.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,552 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gompi-2023a module: False +== 2025-01-23 12:34:21,552 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gfbf-2023a exists... +== 2025-01-23 12:34:21,552 modules.py:649 INFO Module TensorFlow/2.15.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,553 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gfbf-2023a module: False +== 2025-01-23 12:34:21,553 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,553 modules.py:649 INFO Module TensorFlow/2.15.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,553 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,553 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,553 modules.py:649 INFO Module TensorFlow/2.15.1-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,553 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,554 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'TensorFlow', 'version': '2.15.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:34:21,555 modules.py:628 INFO Checking whether jax/0.4.25-gompi-2023a exists... +== 2025-01-23 12:34:21,555 modules.py:649 INFO Module jax/0.4.25-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,555 modules.py:656 INFO Result for existence check of jax/0.4.25-gompi-2023a module: False +== 2025-01-23 12:34:21,555 modules.py:628 INFO Checking whether jax/0.4.25-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,555 modules.py:649 INFO Module jax/0.4.25-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,556 modules.py:656 INFO Result for existence check of jax/0.4.25-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,556 modules.py:628 INFO Checking whether jax/0.4.25-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,556 modules.py:649 INFO Module jax/0.4.25-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,556 modules.py:656 INFO Result for existence check of jax/0.4.25-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,556 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,556 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,556 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'jax', 'version': '0.4.25', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:34:21,558 modules.py:628 INFO Checking whether mpi4py/3.1.4-foss-2023a exists... +== 2025-01-23 12:34:21,558 modules.py:649 INFO Module mpi4py/3.1.4-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,558 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-foss-2023a module: False +== 2025-01-23 12:34:21,558 modules.py:628 INFO Checking whether mpi4py/3.1.4-gfbf-2023a exists... +== 2025-01-23 12:34:21,558 modules.py:649 INFO Module mpi4py/3.1.4-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,558 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-gfbf-2023a module: False +== 2025-01-23 12:34:21,559 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCC-12.3.0 exists... +== 2025-01-23 12:34:21,559 modules.py:649 INFO Module mpi4py/3.1.4-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,559 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCC-12.3.0 module: False +== 2025-01-23 12:34:21,559 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,559 modules.py:649 INFO Module mpi4py/3.1.4-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:34:21,559 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCCcore-12.3.0 module: False +== 2025-01-23 12:34:21,559 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:34:21,559 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'mpi4py', 'version': '3.1.4', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gompi', 'version': '2023a'} +== 2025-01-23 12:34:21,560 easyconfig.py:869 INFO Validating easyconfig +== 2025-01-23 12:34:21,560 easyconfig.py:874 INFO Checking OS dependencies +== 2025-01-23 12:34:21,560 easyconfig.py:929 INFO OS dependencies ok: [] +== 2025-01-23 12:34:21,560 easyconfig.py:879 INFO Checking skipsteps +== 2025-01-23 12:34:21,560 easyconfig.py:884 INFO Checking build option lists +== 2025-01-23 12:34:21,560 easyconfig.py:887 INFO Checking licenses +== 2025-01-23 12:34:21,561 pythonbundle.py:73 INFO Detection of downloaded extension dependencies is enabled +== 2025-01-23 12:34:21,561 pythonbundle.py:75 INFO exts_default_options: {'buildcmd': None, 'check_ldshared': None, 'download_dep_fail': True, 'install_src': None, 'install_target': 'install', 'pip_ignore_installed': True, 'pip_no_index': None, 'pip_verbose': None, 'req_py_majver': None, 'req_py_minver': None, 'max_py_majver': None, 'max_py_minver': None, 'sanity_pip_check': True, 'runtest': True, 'testinstall': False, 'unpack_sources': None, 'unversioned_packages': [], 'use_pip': True, 'use_pip_editable': False, 'use_pip_extras': None, 'use_pip_for_deps': False, 'use_pip_requirement': False, 'zipped_egg': False, 'source_urls': ['https://pypi.python.org/packages/source/%(nameletter)s/%(name)s'], 'options': {}} +== 2025-01-23 12:34:21,561 easyblock.py:4248 INFO Obtained application instance of for DeePDM-kit (easyblock: PythonBundle) +== 2025-01-23 12:34:21,562 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,562 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,562 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,562 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,563 one.py:180 INFO Skipping reformatting value for parameter 'toolchain' +== 2025-01-23 12:34:21,564 filetools.py:1924 INFO Creating directory /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989 (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:34:21,564 easyblock.py:4504 INFO Dumped easyconfig instance to /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989/DeePDM-kit-3.0.1-foss-2023a.eb +== 2025-01-23 12:34:21,571 filetools.py:1924 INFO Creating directory /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989/easyblocks (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:34:21,589 filetools.py:2445 INFO /user/gent/470/vsc47063/easybuild/easybuild-easyblocks/easybuild/easyblocks/generic/pythonbundle.py copied to /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989/easyblocks/pythonbundle.py +== 2025-01-23 12:34:21,589 easyblock.py:4484 INFO Dumped easyblock pythonbundle.py required for reproduction to /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989/easyblocks +== 2025-01-23 12:34:21,618 filetools.py:2445 INFO /user/gent/470/vsc47063/easybuild/easybuild-easyblocks/easybuild/easyblocks/generic/bundle.py copied to /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989/easyblocks/bundle.py +== 2025-01-23 12:34:21,618 easyblock.py:4484 INFO Dumped easyblock bundle.py required for reproduction to /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989/easyblocks +== 2025-01-23 12:34:21,618 filetools.py:1924 INFO Creating directory /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989/hooks (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:34:21,618 filetools.py:2445 INFO /user/gent/470/vsc47063/my_hooks.py copied to /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989/hooks/my_hooks.py +== 2025-01-23 12:34:21,618 easyblock.py:4516 INFO Dumped hooks file /user/gent/470/vsc47063/my_hooks.py which is (potentially) required for reproduction to /tmp/vsc47063/eb-m63ydakg/reprod_20250123123421_1792989/hooks/my_hooks.py +== 2025-01-23 12:34:21,621 easyblock.py:2249 INFO Number of iterations to perform for central part of installation procedure: 1 +== 2025-01-23 12:34:21,621 build_log.py:267 INFO building and installing DeePDM-kit/3.0.1-foss-2023a... +== 2025-01-23 12:34:21,622 filetools.py:2017 INFO Lock /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/.locks/_scratch_gent_vo_001_gvo00117_easybuild_RHEL8_cascadelake-ampere-ib_software_DeePDM-kit_3.0.1-foss-2023a.lock does not exist +== 2025-01-23 12:34:21,622 filetools.py:1958 INFO Creating lock at /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/.locks/_scratch_gent_vo_001_gvo00117_easybuild_RHEL8_cascadelake-ampere-ib_software_DeePDM-kit_3.0.1-foss-2023a.lock... +== 2025-01-23 12:34:21,622 filetools.py:1924 INFO Creating directory /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/.locks/_scratch_gent_vo_001_gvo00117_easybuild_RHEL8_cascadelake-ampere-ib_software_DeePDM-kit_3.0.1-foss-2023a.lock (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:34:21,622 filetools.py:1967 INFO Lock created: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/.locks/_scratch_gent_vo_001_gvo00117_easybuild_RHEL8_cascadelake-ampere-ib_software_DeePDM-kit_3.0.1-foss-2023a.lock +== 2025-01-23 12:34:21,623 build_log.py:267 INFO fetching files... +== 2025-01-23 12:34:21,623 easyblock.py:3970 INFO Starting fetch step +== 2025-01-23 12:34:21,623 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,623 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,623 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,623 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='None', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,623 easyblock.py:3978 INFO Running method fetch_step part of step fetch +== 2025-01-23 12:34:21,623 easyblock.py:2371 WARNING Easyconfig does not specify an EasyBuild-version (key 'easybuild_version')! Assuming the latest version +== 2025-01-23 12:34:21,623 easyblock.py:2399 INFO no sources provided +== 2025-01-23 12:34:21,623 easyblock.py:2414 INFO no patches provided +== 2025-01-23 12:34:21,624 easyblock.py:821 INFO Considering directory in which easyconfig file is located when searching for dargs-0.4.10.tar.gz: /kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit +== 2025-01-23 12:34:21,624 tools.py:282 INFO Found location to 'eb' script via $EB_SCRIPT_PATH: /user/gent/470/vsc47063/easybuild/easybuild-framework/eb +== 2025-01-23 12:34:21,624 tools.py:298 INFO Not considering /user/gent/470/vsc47063/easybuild (no easybuild/easyconfigs subdir found) +== 2025-01-23 12:34:21,624 tools.py:306 INFO Also considering installation prefix /kyukon/home/gent/470/vsc47063/easybuild (via resolved path to 'eb')... +== 2025-01-23 12:34:21,632 easyblock.py:862 INFO Found file dargs-0.4.10.tar.gz at /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dargs-0.4.10.tar.gz +== 2025-01-23 12:34:21,644 easyblock.py:685 INFO md5 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dargs-0.4.10.tar.gz: d41dab12ef182c1730877ba25994ad22 +== 2025-01-23 12:34:21,645 easyblock.py:685 INFO sha256 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dargs-0.4.10.tar.gz: 2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8 +== 2025-01-23 12:34:21,645 easyblock.py:691 INFO Checksum for extension source dargs-0.4.10.tar.gz verified +== 2025-01-23 12:34:21,645 easyblock.py:536 INFO Fetched extension patches: [] +== 2025-01-23 12:34:21,645 easyblock.py:821 INFO Considering directory in which easyconfig file is located when searching for wcmatch-8.5.2.tar.gz: /kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit +== 2025-01-23 12:34:21,645 tools.py:282 INFO Found location to 'eb' script via $EB_SCRIPT_PATH: /user/gent/470/vsc47063/easybuild/easybuild-framework/eb +== 2025-01-23 12:34:21,645 tools.py:298 INFO Not considering /user/gent/470/vsc47063/easybuild (no easybuild/easyconfigs subdir found) +== 2025-01-23 12:34:21,645 tools.py:306 INFO Also considering installation prefix /kyukon/home/gent/470/vsc47063/easybuild (via resolved path to 'eb')... +== 2025-01-23 12:34:21,646 easyblock.py:862 INFO Found file wcmatch-8.5.2.tar.gz at /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/wcmatch-8.5.2.tar.gz +== 2025-01-23 12:34:21,654 easyblock.py:685 INFO md5 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/wcmatch-8.5.2.tar.gz: 2a39c6811cec7fe3fcea203b6e5381ea +== 2025-01-23 12:34:21,654 easyblock.py:685 INFO sha256 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/wcmatch-8.5.2.tar.gz: a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2 +== 2025-01-23 12:34:21,655 easyblock.py:691 INFO Checksum for extension source wcmatch-8.5.2.tar.gz verified +== 2025-01-23 12:34:21,655 easyblock.py:536 INFO Fetched extension patches: [] +== 2025-01-23 12:34:21,655 easyblock.py:821 INFO Considering directory in which easyconfig file is located when searching for mendeleev-0.20.1.tar.gz: /kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit +== 2025-01-23 12:34:21,655 tools.py:282 INFO Found location to 'eb' script via $EB_SCRIPT_PATH: /user/gent/470/vsc47063/easybuild/easybuild-framework/eb +== 2025-01-23 12:34:21,655 tools.py:298 INFO Not considering /user/gent/470/vsc47063/easybuild (no easybuild/easyconfigs subdir found) +== 2025-01-23 12:34:21,655 tools.py:306 INFO Also considering installation prefix /kyukon/home/gent/470/vsc47063/easybuild (via resolved path to 'eb')... +== 2025-01-23 12:34:21,656 easyblock.py:862 INFO Found file mendeleev-0.20.1.tar.gz at /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/mendeleev-0.20.1.tar.gz +== 2025-01-23 12:34:21,680 easyblock.py:685 INFO md5 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/mendeleev-0.20.1.tar.gz: 4a5cc54e2ec10fb67fde9fe4af7d97dc +== 2025-01-23 12:34:21,684 easyblock.py:685 INFO sha256 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/mendeleev-0.20.1.tar.gz: 26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da +== 2025-01-23 12:34:21,685 easyblock.py:691 INFO Checksum for extension source mendeleev-0.20.1.tar.gz verified +== 2025-01-23 12:34:21,685 easyblock.py:536 INFO Fetched extension patches: [] +== 2025-01-23 12:34:21,685 easyblock.py:821 INFO Considering directory in which easyconfig file is located when searching for array_api_compat-1.10.0.tar.gz: /kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit +== 2025-01-23 12:34:21,685 tools.py:282 INFO Found location to 'eb' script via $EB_SCRIPT_PATH: /user/gent/470/vsc47063/easybuild/easybuild-framework/eb +== 2025-01-23 12:34:21,685 tools.py:298 INFO Not considering /user/gent/470/vsc47063/easybuild (no easybuild/easyconfigs subdir found) +== 2025-01-23 12:34:21,685 tools.py:306 INFO Also considering installation prefix /kyukon/home/gent/470/vsc47063/easybuild (via resolved path to 'eb')... +== 2025-01-23 12:34:21,688 easyblock.py:862 INFO Found file array_api_compat-1.10.0.tar.gz at /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/array_api_compat-1.10.0.tar.gz +== 2025-01-23 12:34:21,704 easyblock.py:685 INFO md5 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/array_api_compat-1.10.0.tar.gz: 8d462ff951bab638b9ae9eb3a2f74d9d +== 2025-01-23 12:34:21,704 easyblock.py:685 INFO sha256 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/array_api_compat-1.10.0.tar.gz: eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad +== 2025-01-23 12:34:21,704 easyblock.py:691 INFO Checksum for extension source array_api_compat-1.10.0.tar.gz verified +== 2025-01-23 12:34:21,704 easyblock.py:536 INFO Fetched extension patches: [] +== 2025-01-23 12:34:21,705 easyblock.py:821 INFO Considering directory in which easyconfig file is located when searching for dpdata-0.2.21.tar.gz: /kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit +== 2025-01-23 12:34:21,705 tools.py:282 INFO Found location to 'eb' script via $EB_SCRIPT_PATH: /user/gent/470/vsc47063/easybuild/easybuild-framework/eb +== 2025-01-23 12:34:21,705 tools.py:298 INFO Not considering /user/gent/470/vsc47063/easybuild (no easybuild/easyconfigs subdir found) +== 2025-01-23 12:34:21,705 tools.py:306 INFO Also considering installation prefix /kyukon/home/gent/470/vsc47063/easybuild (via resolved path to 'eb')... +== 2025-01-23 12:34:21,707 easyblock.py:862 INFO Found file dpdata-0.2.21.tar.gz at /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dpdata-0.2.21.tar.gz +== 2025-01-23 12:34:21,740 easyblock.py:685 INFO md5 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dpdata-0.2.21.tar.gz: 5f4a32115b50e1b15eb45cb71a0c6165 +== 2025-01-23 12:34:21,740 easyblock.py:685 INFO sha256 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dpdata-0.2.21.tar.gz: 55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1 +== 2025-01-23 12:34:21,740 easyblock.py:691 INFO Checksum for extension source dpdata-0.2.21.tar.gz verified +== 2025-01-23 12:34:21,740 easyblock.py:536 INFO Fetched extension patches: [] +== 2025-01-23 12:34:21,741 easyblock.py:821 INFO Considering directory in which easyconfig file is located when searching for deepmd_kit-3.0.1.tar.gz: /kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit +== 2025-01-23 12:34:21,741 tools.py:282 INFO Found location to 'eb' script via $EB_SCRIPT_PATH: /user/gent/470/vsc47063/easybuild/easybuild-framework/eb +== 2025-01-23 12:34:21,741 tools.py:298 INFO Not considering /user/gent/470/vsc47063/easybuild (no easybuild/easyconfigs subdir found) +== 2025-01-23 12:34:21,741 tools.py:306 INFO Also considering installation prefix /kyukon/home/gent/470/vsc47063/easybuild (via resolved path to 'eb')... +== 2025-01-23 12:34:21,742 easyblock.py:862 INFO Found file deepmd_kit-3.0.1.tar.gz at /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/deepmd_kit-3.0.1.tar.gz +== 2025-01-23 12:34:21,769 easyblock.py:685 INFO md5 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/deepmd_kit-3.0.1.tar.gz: c3da9e2556f476e813bcf446a6ba8f15 +== 2025-01-23 12:34:21,772 easyblock.py:685 INFO sha256 checksum for /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/deepmd_kit-3.0.1.tar.gz: 10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff +== 2025-01-23 12:34:21,772 easyblock.py:691 INFO Checksum for extension source deepmd_kit-3.0.1.tar.gz verified +== 2025-01-23 12:34:21,772 easyblock.py:536 INFO Fetched extension patches: [] +== 2025-01-23 12:34:21,773 easyblock.py:2459 INFO Checking dirs that need to be created: ['/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all/DeePDM-kit', '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/ai/DeePDM-kit'] +== 2025-01-23 12:34:21,774 build_log.py:267 INFO ... (took < 1 sec) +== 2025-01-23 12:34:21,774 build_log.py:267 INFO creating build dir, resetting environment... +== 2025-01-23 12:34:21,774 easyblock.py:3970 INFO Starting ready step +== 2025-01-23 12:34:21,774 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,774 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,774 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,775 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='None', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,775 easyblock.py:3978 INFO Running method check_readiness_step part of step ready +== 2025-01-23 12:34:21,779 run.py:251 INFO Using /bin/bash as shell for running cmd: ulimit -u +== 2025-01-23 12:34:21,779 run.py:260 INFO running cmd: ulimit -u +== 2025-01-23 12:34:21,782 easyblock.py:2268 INFO Setting parallelism: 8 +== 2025-01-23 12:34:21,825 easyblock.py:2320 WARNING Loaded modules detected: ['env/vsc/donphan', 'env/slurm/donphan', 'env/software/donphan', 'cluster/donphan'] +== 2025-01-23 12:34:21,825 easyblock.py:3978 INFO Running method make_builddir part of step ready +== 2025-01-23 12:34:21,825 filetools.py:1924 INFO Creating directory /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:34:21,826 easyblock.py:3978 INFO Running method reset_env part of step ready +== 2025-01-23 12:34:21,826 easyblock.py:3978 INFO Running method handle_iterate_opts part of step ready +== 2025-01-23 12:34:21,826 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,826 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,826 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,826 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', parallel='8', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='None', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,827 build_log.py:267 INFO ... (took < 1 sec) +== 2025-01-23 12:34:21,827 build_log.py:267 INFO unpacking... +== 2025-01-23 12:34:21,827 easyblock.py:3970 INFO Starting source step +== 2025-01-23 12:34:21,827 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,827 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,827 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,827 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', parallel='8', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='None', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,827 easyblock.py:3978 INFO Running method checksum_step part of step source +== 2025-01-23 12:34:21,827 easyblock.py:3978 INFO Running method extract_step part of step source +== 2025-01-23 12:34:21,827 build_log.py:267 INFO ... (took < 1 sec) +== 2025-01-23 12:34:21,828 build_log.py:267 INFO patching... +== 2025-01-23 12:34:21,828 easyblock.py:3970 INFO Starting patch step +== 2025-01-23 12:34:21,828 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,828 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,828 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,828 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', parallel='8', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='None', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,828 easyblock.py:3978 INFO Running method patch_step part of step patch +== 2025-01-23 12:34:21,828 build_log.py:267 INFO ... (took < 1 sec) +== 2025-01-23 12:34:21,828 build_log.py:267 INFO preparing... +== 2025-01-23 12:34:21,828 easyblock.py:3970 INFO Starting prepare step +== 2025-01-23 12:34:21,828 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:34:21,829 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:34:21,829 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:34:21,829 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', parallel='8', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='None', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:34:21,829 easyblock.py:3978 INFO Running method prepare_step part of step prepare +== 2025-01-23 12:34:21,831 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,831 modules.py:633 INFO Module scikit-build-core/0.9.3-GCCcore-12.3.0 exists (found in list of available modules) +== 2025-01-23 12:34:21,831 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-GCCcore-12.3.0 module: True +== 2025-01-23 12:34:21,831 modules.py:628 INFO Checking whether hatchling/1.18.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,831 modules.py:633 INFO Module hatchling/1.18.0-GCCcore-12.3.0 exists (found in list of available modules) +== 2025-01-23 12:34:21,831 modules.py:656 INFO Result for existence check of hatchling/1.18.0-GCCcore-12.3.0 module: True +== 2025-01-23 12:34:21,831 modules.py:628 INFO Checking whether poetry/1.5.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,831 modules.py:633 INFO Module poetry/1.5.1-GCCcore-12.3.0 exists (found in list of available modules) +== 2025-01-23 12:34:21,831 modules.py:656 INFO Result for existence check of poetry/1.5.1-GCCcore-12.3.0 module: True +== 2025-01-23 12:34:21,831 modules.py:628 INFO Checking whether git/2.41.0-GCCcore-12.3.0-nodocs exists... +== 2025-01-23 12:34:21,831 modules.py:633 INFO Module git/2.41.0-GCCcore-12.3.0-nodocs exists (found in list of available modules) +== 2025-01-23 12:34:21,831 modules.py:656 INFO Result for existence check of git/2.41.0-GCCcore-12.3.0-nodocs module: True +== 2025-01-23 12:34:21,832 modules.py:628 INFO Checking whether Python/3.11.3-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,832 modules.py:633 INFO Module Python/3.11.3-GCCcore-12.3.0 exists (found in list of available modules) +== 2025-01-23 12:34:21,832 modules.py:656 INFO Result for existence check of Python/3.11.3-GCCcore-12.3.0 module: True +== 2025-01-23 12:34:21,832 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-gfbf-2023a exists... +== 2025-01-23 12:34:21,832 modules.py:633 INFO Module SciPy-bundle/2023.07-gfbf-2023a exists (found in list of available modules) +== 2025-01-23 12:34:21,832 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-gfbf-2023a module: True +== 2025-01-23 12:34:21,832 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-gfbf-2023a exists... +== 2025-01-23 12:34:21,832 modules.py:633 INFO Module ml_dtypes/0.3.2-gfbf-2023a exists (found in list of available modules) +== 2025-01-23 12:34:21,832 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-gfbf-2023a module: True +== 2025-01-23 12:34:21,832 modules.py:628 INFO Checking whether PyYAML/6.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:34:21,832 modules.py:633 INFO Module PyYAML/6.0-GCCcore-12.3.0 exists (found in list of available modules) +== 2025-01-23 12:34:21,832 modules.py:656 INFO Result for existence check of PyYAML/6.0-GCCcore-12.3.0 module: True +== 2025-01-23 12:34:21,832 modules.py:628 INFO Checking whether h5py/3.9.0-foss-2023a exists... +== 2025-01-23 12:34:21,832 modules.py:633 INFO Module h5py/3.9.0-foss-2023a exists (found in list of available modules) +== 2025-01-23 12:34:21,832 modules.py:656 INFO Result for existence check of h5py/3.9.0-foss-2023a module: True +== 2025-01-23 12:34:21,833 modules.py:628 INFO Checking whether TensorFlow/2.15.1-foss-2023a exists... +== 2025-01-23 12:34:21,833 modules.py:633 INFO Module TensorFlow/2.15.1-foss-2023a exists (found in list of available modules) +== 2025-01-23 12:34:21,833 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-foss-2023a module: True +== 2025-01-23 12:34:21,833 modules.py:628 INFO Checking whether jax/0.4.25-gfbf-2023a exists... +== 2025-01-23 12:34:21,833 modules.py:633 INFO Module jax/0.4.25-gfbf-2023a exists (found in list of available modules) +== 2025-01-23 12:34:21,833 modules.py:656 INFO Result for existence check of jax/0.4.25-gfbf-2023a module: True +== 2025-01-23 12:34:21,833 modules.py:628 INFO Checking whether mpi4py/3.1.4-gompi-2023a exists... +== 2025-01-23 12:34:21,833 modules.py:633 INFO Module mpi4py/3.1.4-gompi-2023a exists (found in list of available modules) +== 2025-01-23 12:34:21,833 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-gompi-2023a module: True +== 2025-01-23 12:34:21,833 modules.py:628 INFO Checking whether foss/2023a exists... +== 2025-01-23 12:34:21,833 modules.py:636 INFO Module foss/2023a not found in list of available modules, checking via 'module show'... +== 2025-01-23 12:34:28,430 modules.py:656 INFO Result for existence check of foss/2023a module: True +== 2025-01-23 12:34:40,929 environment.py:93 INFO Environment variable LD_LIBRARY_PATH set to /apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW.MPI/3.3.10-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenBLAS/0.3.23-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/lib:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpciaccess/0.17-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib') +== 2025-01-23 12:34:50,667 environment.py:93 INFO Environment variable LD_LIBRARY_PATH set to /apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW.MPI/3.3.10-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenBLAS/0.3.23-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/lib:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpciaccess/0.17-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib') +== 2025-01-23 12:34:53,843 environment.py:93 INFO Environment variable LD_LIBRARY_PATH set to /apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW.MPI/3.3.10-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenBLAS/0.3.23-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/lib:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpciaccess/0.17-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib') +== 2025-01-23 12:34:57,209 environment.py:93 INFO Environment variable LD_LIBRARY_PATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages/numpy/core/lib:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW.MPI/3.3.10-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenBLAS/0.3.23-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/lib:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpciaccess/0.17-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages/numpy/core/lib') +== 2025-01-23 12:35:03,914 environment.py:93 INFO Environment variable LD_LIBRARY_PATH set to /apps/gent/RHEL8/cascadelake-ib/software/libyaml/0.2.5-GCCcore-12.3.0/lib:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages/numpy/core/lib:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW.MPI/3.3.10-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenBLAS/0.3.23-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/lib:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpciaccess/0.17-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/libyaml/0.2.5-GCCcore-12.3.0/lib') +== 2025-01-23 12:35:07,168 environment.py:93 INFO Environment variable LD_LIBRARY_PATH set to /apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/Szip/2.1.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libyaml/0.2.5-GCCcore-12.3.0/lib:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages/numpy/core/lib:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW.MPI/3.3.10-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenBLAS/0.3.23-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/lib:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpciaccess/0.17-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/Szip/2.1.1-GCCcore-12.3.0/lib') +== 2025-01-23 12:35:10,965 environment.py:93 INFO Environment variable LD_LIBRARY_PATH set to /apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Abseil/20230125.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/snappy/1.1.10-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/nsync/1.26.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/JsonCpp/1.9.5-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/double-conversion/3.3.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/Szip/2.1.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libyaml/0.2.5-GCCcore-12.3.0/lib:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages/numpy/core/lib:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW.MPI/3.3.10-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenBLAS/0.3.23-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/lib:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpciaccess/0.17-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Abseil/20230125.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/snappy/1.1.10-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/nsync/1.26.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/JsonCpp/1.9.5-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/double-conversion/3.3.0-GCCcore-12.3.0/lib') +== 2025-01-23 12:35:17,878 modules.py:628 INFO Checking whether foss/2023a exists... +== 2025-01-23 12:35:17,878 modules.py:636 INFO Module foss/2023a not found in list of available modules, checking via 'module show'... +== 2025-01-23 12:35:17,879 modules.py:656 INFO Result for existence check of foss/2023a module: True +== 2025-01-23 12:35:17,880 toolchain.py:766 INFO List of toolchain dependency modules and toolchain definition match! +== 2025-01-23 12:35:17,883 compiler.py:363 INFO _set_optimal_architecture: using march=native as optarch for x86_64/Intel. +== 2025-01-23 12:35:17,895 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/include was not found +== 2025-01-23 12:35:17,899 variables.py:203 WARNING flags_for_subdirs: directory /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/include was not found +== 2025-01-23 12:35:17,900 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/include was not found +== 2025-01-23 12:35:17,901 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/include was not found +== 2025-01-23 12:35:17,902 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/include was not found +== 2025-01-23 12:35:17,902 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/lib64 was not found +== 2025-01-23 12:35:17,902 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/lib was not found +== 2025-01-23 12:35:17,903 variables.py:203 WARNING flags_for_subdirs: directory /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/include was not found +== 2025-01-23 12:35:17,905 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/include was not found +== 2025-01-23 12:35:17,907 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/include was not found +== 2025-01-23 12:35:17,908 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/include was not found +== 2025-01-23 12:35:17,909 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/include was not found +== 2025-01-23 12:35:17,912 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/include was not found +== 2025-01-23 12:35:17,913 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/include was not found +== 2025-01-23 12:35:17,917 environment.py:93 INFO Environment variable BLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:17,917 environment.py:93 INFO Environment variable EBVARBLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:17,917 environment.py:93 INFO Environment variable BLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:17,917 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable BLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable BLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable BLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable BLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable EBVARBLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable BLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable EBVARBLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,918 environment.py:93 INFO Environment variable BLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable EBVARBLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable BLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable EBVARBLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable BLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable EBVARBLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable CC set to gcc (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable EBVARCC set to gcc (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable CFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable EBVARCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable CPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable EBVARCPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable CXX set to g++ (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable EBVARCXX set to g++ (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable CXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable EBVARCXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,919 environment.py:93 INFO Environment variable F77 set to gfortran (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable EBVARF77 set to gfortran (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable F90 set to gfortran (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable EBVARF90 set to gfortran (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable F90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable EBVARF90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable FC set to gfortran (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable EBVARFC set to gfortran (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable FCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable EBVARFCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable FFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable EBVARFFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable FFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable EBVARFFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable FFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,920 environment.py:93 INFO Environment variable EBVARFFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS set to libfftw3.so (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS set to libfftw3.so (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS set to libfftw3.a (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS set to libfftw3.a (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable FFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable EBVARFFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable FFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable EBVARFFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable FFT_SHARED_LIBS set to libfftw3.so (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS set to libfftw3.so (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable FFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,921 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable FFT_STATIC_LIBS set to libfftw3.a (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS set to libfftw3.a (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable FFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable FLIBS set to -lgfortran (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable EBVARFLIBS set to -lgfortran (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable EBVARLAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable EBVARLAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable EBVARLAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable EBVARLAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:17,922 environment.py:93 INFO Environment variable EBVARLAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable EBVARLAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable LDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib -L/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib -L/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib -L/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib -L/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib -L/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib64 -L/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib -L/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib -L/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib64 -L/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable EBVARLDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib -L/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib -L/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib -L/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib -L/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib -L/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib64 -L/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib -L/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib -L/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib64 -L/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable LIBBLAS set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable EBVARLIBBLAS set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable LIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable EBVARLIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable LIBFFT set to -lfftw3 (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable EBVARLIBFFT set to -lfftw3 (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable LIBFFT_MT set to -lfftw3 -lpthread (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable EBVARLIBFFT_MT set to -lfftw3 -lpthread (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable LIBLAPACK set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable EBVARLIBLAPACK set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:17,923 environment.py:93 INFO Environment variable LIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable LIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable LIBLAPACK_ONLY set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable EBVARLIBLAPACK_ONLY set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable LIBS set to -lm -lpthread (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable EBVARLIBS set to -lm -lpthread (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable LIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable LIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable LIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable LIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previously undefined) +== 2025-01-23 12:35:17,924 environment.py:93 INFO Environment variable MPICC set to mpicc (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable EBVARMPICC set to mpicc (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable MPICXX set to mpicxx (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable EBVARMPICXX set to mpicxx (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable MPIF77 set to mpifort (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable EBVARMPIF77 set to mpifort (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable MPIF90 set to mpifort (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable EBVARMPIF90 set to mpifort (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable MPIFC set to mpifort (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable EBVARMPIFC set to mpifort (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable MPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable EBVARMPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable MPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable EBVARMPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable MPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previously undefined) +== 2025-01-23 12:35:17,925 environment.py:93 INFO Environment variable EBVARMPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable MPI_LIB_STATIC set to (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable EBVARMPI_LIB_STATIC set to (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable OMPI_CC set to gcc (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable EBVAROMPI_CC set to gcc (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable OMPI_CXX set to g++ (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable EBVAROMPI_CXX set to g++ (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable OMPI_F77 set to gfortran (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable EBVAROMPI_F77 set to gfortran (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable OMPI_F90 set to gfortran (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable EBVAROMPI_F90 set to gfortran (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable OMPI_FC set to gfortran (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable EBVAROMPI_FC set to gfortran (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable OPTFLAGS set to -O2 -ftree-vectorize -march=native (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable EBVAROPTFLAGS set to -O2 -ftree-vectorize -march=native (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable PRECFLAGS set to -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,926 environment.py:93 INFO Environment variable EBVARPRECFLAGS set to -fno-math-errno (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable SCALAPACK_INC_DIR set to (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable EBVARSCALAPACK_INC_DIR set to (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable SCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable EBVARSCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable SCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable SCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable SCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable EBVARSCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable SCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:17,927 environment.py:93 INFO Environment variable EBVARSCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:17,927 easyblock.py:2152 INFO Using /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/ as start dir +== 2025-01-23 12:35:17,928 filetools.py:528 INFO Command python found at /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:35:17,928 run.py:251 INFO Using /bin/bash as shell for running cmd: python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:17,928 run.py:260 INFO running cmd: python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:18,094 run.py:251 INFO Using /bin/bash as shell for running cmd: python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:35:18,094 run.py:260 INFO running cmd: python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:35:20,330 run.py:251 INFO Using /bin/bash as shell for running cmd: python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:20,331 run.py:260 INFO running cmd: python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:20,370 run.py:251 INFO Using /bin/bash as shell for running cmd: python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:35:20,370 run.py:260 INFO running cmd: python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:35:20,541 build_log.py:267 INFO ... (took 58 secs) +== 2025-01-23 12:35:20,542 build_log.py:267 INFO configuring... +== 2025-01-23 12:35:20,542 easyblock.py:3970 INFO Starting configure step +== 2025-01-23 12:35:20,542 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:20,542 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:20,542 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:20,542 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', parallel='8', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:20,543 easyblock.py:3978 INFO Running method configure_step part of step configure +== 2025-01-23 12:35:20,543 build_log.py:267 INFO ... (took < 1 sec) +== 2025-01-23 12:35:20,543 build_log.py:267 INFO building... +== 2025-01-23 12:35:20,543 easyblock.py:3970 INFO Starting build step +== 2025-01-23 12:35:20,543 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:20,543 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:20,543 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:20,543 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', parallel='8', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:20,543 easyblock.py:3978 INFO Running method build_step part of step build +== 2025-01-23 12:35:20,543 build_log.py:267 INFO ... (took < 1 sec) +== 2025-01-23 12:35:20,543 build_log.py:267 INFO testing... +== 2025-01-23 12:35:20,544 easyblock.py:3970 INFO Starting test step +== 2025-01-23 12:35:20,544 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:20,544 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:20,544 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:20,544 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', parallel='8', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:20,544 easyblock.py:3978 INFO Running method test_step part of step test +== 2025-01-23 12:35:20,544 build_log.py:267 INFO ... (took < 1 sec) +== 2025-01-23 12:35:20,544 build_log.py:267 INFO installing... +== 2025-01-23 12:35:20,544 easyblock.py:3970 INFO Starting install step +== 2025-01-23 12:35:20,544 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:20,545 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:20,545 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:20,545 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', parallel='8', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:20,545 easyblock.py:3978 INFO Running method stage_install_step part of step install +== 2025-01-23 12:35:20,545 easyblock.py:3978 INFO Running method make_installdir part of step install +== 2025-01-23 12:35:20,548 easyblock.py:1151 INFO Found old directory /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a +== 2025-01-23 12:35:20,957 filetools.py:385 INFO Path /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a successfully removed. +== 2025-01-23 12:35:20,957 easyblock.py:1159 INFO Removed old directory /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a +== 2025-01-23 12:35:20,957 filetools.py:1924 INFO Creating directory /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:35:20,958 easyblock.py:3978 INFO Running method install_step part of step install +== 2025-01-23 12:35:20,958 build_log.py:267 INFO ... (took < 1 sec) +== 2025-01-23 12:35:20,958 build_log.py:267 INFO taking care of extensions... +== 2025-01-23 12:35:20,958 easyblock.py:3970 INFO Starting extensions step +== 2025-01-23 12:35:20,958 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:20,958 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:20,958 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:20,959 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', builddir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', installdir='/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a', module_name='DeePDM-kit/3.0.1-foss-2023a', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', parallel='8', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', start_dir='/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:20,959 easyblock.py:3978 INFO Running method extensions_step part of step extensions +== 2025-01-23 12:35:20,959 environment.py:93 INFO Environment variable PYTHONNOUSERSITE set to 1 (previously undefined) +== 2025-01-23 12:35:20,959 easyblock.py:1715 INFO Loading fake module (DeePDM-kit/3.0.1-foss-2023a) +== 2025-01-23 12:35:21,330 easyblock.py:1632 INFO Only retaining paths for CMAKE_PREFIX_PATH that contain at least one file: [''] -> [] +== 2025-01-23 12:35:21,331 filetools.py:1924 INFO Creating directory /tmp/vsc47063/eb-m63ydakg/tmpzyt7lpk4/all/DeePDM-kit (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:35:21,331 easyblock.py:3781 INFO Module file /tmp/vsc47063/eb-m63ydakg/tmpzyt7lpk4/all/DeePDM-kit/3.0.1-foss-2023a.lua written: help([==[ + +Description +=========== +A deep learning package for many-body potential energy representation and molecular dynamics. + + +More information +================ + - Homepage: https://github.com/deepmodeling/deepmd-kit/ + + +Included extensions +=================== +array_api_compat-1.10.0, dargs-0.4.10, deepmd_kit-3.0.1, dpdata-0.2.21, +mendeleev-0.20.1, wcmatch-8.5.2 +]==]) + +whatis([==[Description: A deep learning package for many-body potential energy representation and molecular dynamics.]==]) +whatis([==[Homepage: https://github.com/deepmodeling/deepmd-kit/]==]) +whatis([==[URL: https://github.com/deepmodeling/deepmd-kit/]==]) +whatis([==[Extensions: array_api_compat-1.10.0, dargs-0.4.10, deepmd_kit-3.0.1, dpdata-0.2.21, mendeleev-0.20.1, wcmatch-8.5.2]==]) + +local root = "/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a" + +conflict("DeePDM-kit") + +if not ( isloaded("foss/2023a") ) then + load("foss/2023a") +end + +if not ( isloaded("Python/3.11.3-GCCcore-12.3.0") ) then + load("Python/3.11.3-GCCcore-12.3.0") +end + +if not ( isloaded("SciPy-bundle/2023.07-gfbf-2023a") ) then + load("SciPy-bundle/2023.07-gfbf-2023a") +end + +if not ( isloaded("ml_dtypes/0.3.2-gfbf-2023a") ) then + load("ml_dtypes/0.3.2-gfbf-2023a") +end + +if not ( isloaded("PyYAML/6.0-GCCcore-12.3.0") ) then + load("PyYAML/6.0-GCCcore-12.3.0") +end + +if not ( isloaded("h5py/3.9.0-foss-2023a") ) then + load("h5py/3.9.0-foss-2023a") +end + +if not ( isloaded("TensorFlow/2.15.1-foss-2023a") ) then + load("TensorFlow/2.15.1-foss-2023a") +end + +if not ( isloaded("jax/0.4.25-gfbf-2023a") ) then + load("jax/0.4.25-gfbf-2023a") +end + +if not ( isloaded("mpi4py/3.1.4-gompi-2023a") ) then + load("mpi4py/3.1.4-gompi-2023a") +end + +setenv("EBROOTDEEPDMMINKIT", root) +setenv("EBVERSIONDEEPDMMINKIT", "3.0.1") +setenv("EBDEVELDEEPDMMINKIT", pathJoin(root, "easybuild/DeePDM-kit-3.0.1-foss-2023a-easybuild-devel")) + +prepend_path("PYTHONPATH", pathJoin(root, "lib/python3.11/site-packages")) +-- Built with EasyBuild version 4.9.5.dev0-rb37f70756960c1686875974f8381491df280cc00 +setenv("EBEXTSLISTDEEPDMMINKIT", "dargs-0.4.10,wcmatch-8.5.2,mendeleev-0.20.1,array_api_compat-1.10.0,dpdata-0.2.21,deepmd_kit-3.0.1") + +== 2025-01-23 12:35:21,333 filetools.py:1924 INFO Creating directory /tmp/vsc47063/eb-m63ydakg/tmpzyt7lpk4/ai/DeePDM-kit (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:35:21,333 easyblock.py:3812 INFO Skipping devel module... +== 2025-01-23 12:35:21,333 filetools.py:340 INFO Symlinked 3.0.1-foss-2023a.lua to /tmp/vsc47063/eb-m63ydakg/tmpzyt7lpk4/all/DeePDM-kit/default +== 2025-01-23 12:35:21,333 module_generator.py:1502 INFO Module default version file written to point to /tmp/vsc47063/eb-m63ydakg/tmpzyt7lpk4/all/DeePDM-kit/default +== 2025-01-23 12:35:26,785 environment.py:93 INFO Environment variable __LMOD_REF_COUNT_PATH set to /usr/libexec/jobcli:1;/user/gent/470/vsc47063/easybuild/easybuild-framework:1;/usr/local/vsc/bin:1;/opt/VirtualGL/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/user/gent/470/vsc47063/.dotnet/tools:1 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:1;/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:1;/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:1;/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:1;/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:1;/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:1;/usr/libexec/jobcli:1;/user/gent/470/vsc47063/easybuild/easybuild-framework:1;/usr/local/vsc/bin:1;/opt/VirtualGL/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/user/gent/470/vsc47063/.dotnet/tools:1') +== 2025-01-23 12:35:26,785 environment.py:93 INFO Environment variable _ModuleTable002_ set to dHVzID0gImFjdGl2ZSIsCnVzZXJOYW1lID0gImNsdXN0ZXIvZG9ucGhhbiIsCndWID0gIipkb25waGFuLip6ZmluYWwiLAp9LApbImVudi9zbHVybSJdID0gewpmbiA9ICIvZXRjL21vZHVsZWZpbGVzL3ZzYy9lbnYvc2x1cm0vZG9ucGhhbi5sdWEiLApmdWxsTmFtZSA9ICJlbnYvc2x1cm0vZG9ucGhhbiIsCmxvYWRPcmRlciA9IDIsCnByb3BUID0gewpsbW9kID0gewpzdGlja3kgPSAxLAp9LAp9LApyZWZfY291bnQgPSAxLApzdGFja0RlcHRoID0gMSwKc3RhdHVzID0gImFjdGl2ZSIsCnVzZXJOYW1lID0gImVudi9zbHVybS9kb25waGFuIiwKd1YgPSAiKmRvbnBoYW4uKnpmaW5hbCIsCn0sClsiZW52L3NvZnR3YXJlIl0gPSB7CmZuID0gIi9ldGMvbW9kdWxlZmlsZXMvdnNj (previous value: 'CnByb3BUID0ge30sCnN0YWNrRGVwdGggPSA0LApzdGF0dXMgPSAiYWN0aXZlIiwKdXNlck5hbWUgPSAiQWJzZWlsLzIwMjMwMTI1LjMtR0NDY29yZS0xMi4zLjAiLAp3ViA9ICIwMjAyMzAxMjUuMDAwMDAwMDAzLipnY2Njb3JlLip6ZmluYWwtLjAwMDAwMDAxMi4wMDAwMDAwMDMuKnpmaW5hbCIsCn0sCkNNYWtlID0gewpmbiA9ICIvYXBwcy9nZW50L1JIRUw4L2Nhc2NhZGVsYWtlLWliL21vZHVsZXMvYWxsL0NNYWtlLzMuMjYuMy1HQ0Njb3JlLTEyLjMuMC5sdWEiLApmdWxsTmFtZSA9ICJDTWFrZS8zLjI2LjMtR0NDY29yZS0xMi4zLjAiLApsb2FkT3JkZXIgPSAzOSwKcHJvcFQgPSB7fSwKc3RhY2tEZXB0aCA9IDEsCnN0YXR1cyA9ICJhY3RpdmUiLAp1c2VyTmFtZSA9ICJD') +== 2025-01-23 12:35:26,785 environment.py:93 INFO Environment variable _ModuleTable004_ set to ID0gMSwKc3RhY2tEZXB0aCA9IDEsCnN0YXR1cyA9ICJhY3RpdmUiLAp1c2VyTmFtZSA9ICJlbnYvdnNjL2RvbnBoYW4iLAp3ViA9ICIqZG9ucGhhbi4qemZpbmFsIiwKfSwKfSwKbXBhdGhBID0gewoiL3NjcmF0Y2gvZ2VudC92by8wMDEvZ3ZvMDAxMTcvZWFzeWJ1aWxkL1JIRUw4L2Nhc2NhZGVsYWtlLWFtcGVyZS1pYi9tb2R1bGVzL2FsbCIKLCAiL2FwcHMvZ2VudC9SSEVMOC9jYXNjYWRlbGFrZS1hbXBlcmUtaWIvbW9kdWxlcy9hbGwiLCAiL2FwcHMvZ2VudC9SSEVMOC9jYXNjYWRlbGFrZS1pYi9tb2R1bGVzL2FsbCIsICIvZXRjL21vZHVsZWZpbGVzL3ZzYyIsCn0sCnN5c3RlbUJhc2VNUEFUSCA9ICIvZXRjL21vZHVsZWZpbGVzL3ZzYyIsCn0K (previous value: 'ZmluYWwtLjAwMDAwMDAxMi4wMDAwMDAwMDMuKnpmaW5hbCIsCn0sClsiRkZUVy5NUEkiXSA9IHsKZm4gPSAiL2FwcHMvZ2VudC9SSEVMOC9jYXNjYWRlbGFrZS1pYi9tb2R1bGVzL2FsbC9GRlRXLk1QSS8zLjMuMTAtZ29tcGktMjAyM2EubHVhIiwKZnVsbE5hbWUgPSAiRkZUVy5NUEkvMy4zLjEwLWdvbXBpLTIwMjNhIiwKbG9hZE9yZGVyID0gMjQsCnByb3BUID0ge30sCnN0YWNrRGVwdGggPSAxLApzdGF0dXMgPSAiYWN0aXZlIiwKdXNlck5hbWUgPSAiRkZUVy5NUEkvMy4zLjEwLWdvbXBpLTIwMjNhIiwKd1YgPSAiMDAwMDAwMDAzLjAwMDAwMDAwMy4wMDAwMDAwMTAuKmdvbXBpLip6ZmluYWwtLjAwMDAwMjAyMy4qYS4qemZpbmFsIiwKfSwKRmxleGlCTEFTID0gewpmbiA9') +== 2025-01-23 12:35:26,785 environment.py:93 INFO Environment variable __LMOD_REF_COUNT_PYTHONPATH set to /user/gent/470/vsc47063/easybuild/easybuild-framework:1;/user/gent/470/vsc47063/easybuild/easybuild-easyblocks:1;/user/gent/470/vsc47063/easybuild/easybuild-easyconfigs:1 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:1;/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python:1;/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:1;/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:1;/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:1') +== 2025-01-23 12:35:26,785 environment.py:93 INFO Environment variable __LMOD_REF_COUNT_MODULEPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all:2;/apps/gent/RHEL8/cascadelake-ampere-ib/modules/all:1;/apps/gent/RHEL8/cascadelake-ib/modules/all:1;/etc/modulefiles/vsc:1 (previous value: '/tmp/vsc47063/eb-m63ydakg/tmpzyt7lpk4/all:1;/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all:2;/apps/gent/RHEL8/cascadelake-ampere-ib/modules/all:1;/apps/gent/RHEL8/cascadelake-ib/modules/all:1;/etc/modulefiles/vsc:1') +== 2025-01-23 12:35:26,785 environment.py:93 INFO Environment variable _ModuleTable001_ set to X01vZHVsZVRhYmxlXyA9IHsKTVR2ZXJzaW9uID0gMywKY19yZWJ1aWxkVGltZSA9IDcyMDAuMCwKY19zaG9ydFRpbWUgPSAwLjAyMjE2NjAxMzcxNzY1MSwKZGVwdGhUID0ge30sCmZhbWlseSA9IHsKY2x1c3RlciA9ICJjbHVzdGVyIiwKZW52X3NsdXJtID0gImVudi9zbHVybSIsCmVudl9zb2Z0d2FyZSA9ICJlbnYvc29mdHdhcmUiLAplbnZfdnNjID0gImVudi92c2MiLAp9LAptVCA9IHsKY2x1c3RlciA9IHsKZm4gPSAiL2V0Yy9tb2R1bGVmaWxlcy92c2MvY2x1c3Rlci9kb25waGFuLmx1YSIsCmZ1bGxOYW1lID0gImNsdXN0ZXIvZG9ucGhhbiIsCmxvYWRPcmRlciA9IDQsCnByb3BUID0gewpsbW9kID0gewpzdGlja3kgPSAxLAp9LAp9LApzdGFja0RlcHRoID0gMCwKc3Rh (previous value: 'X01vZHVsZVRhYmxlXyA9IHsKTVR2ZXJzaW9uID0gMywKY19yZWJ1aWxkVGltZSA9IDcyMDAuMCwKY19zaG9ydFRpbWUgPSAwLjAyMjE2NjAxMzcxNzY1MSwKZGVwdGhUID0ge30sCmZhbWlseSA9IHsKY2x1c3RlciA9ICJjbHVzdGVyIiwKZW52X3NsdXJtID0gImVudi9zbHVybSIsCmVudl9zb2Z0d2FyZSA9ICJlbnYvc29mdHdhcmUiLAplbnZfdnNjID0gImVudi92c2MiLAp9LAptVCA9IHsKQWJzZWlsID0gewpmbiA9ICIvYXBwcy9nZW50L1JIRUw4L2Nhc2NhZGVsYWtlLWliL21vZHVsZXMvYWxsL0Fic2VpbC8yMDIzMDEyNS4zLUdDQ2NvcmUtMTIuMy4wLmx1YSIsCmZ1bGxOYW1lID0gIkFic2VpbC8yMDIzMDEyNS4zLUdDQ2NvcmUtMTIuMy4wIiwKbG9hZE9yZGVyID0gNzAs') +== 2025-01-23 12:35:26,786 environment.py:93 INFO Environment variable LOADEDMODULES set to env/vsc/donphan:env/slurm/donphan:env/software/donphan:cluster/donphan (previous value: 'env/vsc/donphan:env/slurm/donphan:env/software/donphan:cluster/donphan:GCCcore/12.3.0:zlib/1.2.13-GCCcore-12.3.0:binutils/2.40-GCCcore-12.3.0:GCC/12.3.0:numactl/2.0.16-GCCcore-12.3.0:XZ/5.4.2-GCCcore-12.3.0:libxml2/2.11.4-GCCcore-12.3.0:libpciaccess/0.17-GCCcore-12.3.0:hwloc/2.9.1-GCCcore-12.3.0:OpenSSL/1.1:libevent/2.1.12-GCCcore-12.3.0:UCX/1.14.1-GCCcore-12.3.0:PMIx/4.2.4-GCCcore-12.3.0:UCC/1.2.0-GCCcore-12.3.0:OpenMPI/4.1.5-GCC-12.3.0:OpenBLAS/0.3.23-GCC-12.3.0:FlexiBLAS/3.3.1-GCC-12.3.0:FFTW/3.3.10-GCC-12.3.0:gompi/2023a:FFTW.MPI/3.3.10-gompi-2023a:ScaLAPACK/2.2.0-gompi-2023a-fb:foss/2023a:bzip2/1.0.8-GCCcore-12.3.0:ncurses/6.4-GCCcore-12.3.0:libreadline/8.2-GCCcore-12.3.0:Tcl/8.6.13-GCCcore-12.3.0:SQLite/3.42.0-GCCcore-12.3.0:libffi/3.4.4-GCCcore-12.3.0:cffi/1.15.1-GCCcore-12.3.0:cryptography/41.0.1-GCCcore-12.3.0:virtualenv/20.23.1-GCCcore-12.3.0:Python-bundle-PyPI/2023.06-GCCcore-12.3.0:cURL/8.0.1-GCCcore-12.3.0:libarchive/3.6.2-GCCcore-12.3.0:CMake/3.26.3-GCCcore-12.3.0:scikit-build-core/0.9.3-GCCcore-12.3.0:hatchling/1.18.0-GCCcore-12.3.0:poetry/1.5.1-GCCcore-12.3.0:expat/2.5.0-GCCcore-12.3.0:gettext/0.21.1-GCCcore-12.3.0:Perl/5.36.1-GCCcore-12.3.0:git/2.41.0-GCCcore-12.3.0-nodocs:Python/3.11.3-GCCcore-12.3.0:gfbf/2023a:pybind11/2.11.1-GCCcore-12.3.0:SciPy-bundle/2023.07-gfbf-2023a:ml_dtypes/0.3.2-gfbf-2023a:libyaml/0.2.5-GCCcore-12.3.0:PyYAML/6.0-GCCcore-12.3.0:Szip/2.1.1-GCCcore-12.3.0:HDF5/1.14.0-gompi-2023a:h5py/3.9.0-foss-2023a:dill/0.3.7-GCCcore-12.3.0:double-conversion/3.3.0-GCCcore-12.3.0:flatbuffers/23.5.26-GCCcore-12.3.0:flatbuffers-python/23.5.26-GCCcore-12.3.0:giflib/5.2.1-GCCcore-12.3.0:ICU/73.2-GCCcore-12.3.0:JsonCpp/1.9.5-GCCcore-12.3.0:NASM/2.16.01-GCCcore-12.3.0:libjpeg-turbo/2.1.5.1-GCCcore-12.3.0:nsync/1.26.0-GCCcore-12.3.0:patchelf/0.18.0-GCCcore-12.3.0:libpng/1.6.39-GCCcore-12.3.0:snappy/1.1.10-GCCcore-12.3.0:Abseil/20230125.3-GCCcore-12.3.0:protobuf/24.0-GCCcore-12.3.0:protobuf-python/4.24.0-GCCcore-12.3.0:grpcio/1.57.0-GCCcore-12.3.0:TensorFlow/2.15.1-foss-2023a:absl-py/2.1.0-GCCcore-12.3.0:jax/0.4.25-gfbf-2023a:mpi4py/3.1.4-gompi-2023a') +== 2025-01-23 12:35:26,786 environment.py:93 INFO Environment variable _ModuleTable003_ set to L2Vudi9zb2Z0d2FyZS9kb25waGFuLmx1YSIsCmZ1bGxOYW1lID0gImVudi9zb2Z0d2FyZS9kb25waGFuIiwKbG9hZE9yZGVyID0gMywKcHJvcFQgPSB7Cmxtb2QgPSB7CnN0aWNreSA9IDEsCn0sCn0sCnJlZl9jb3VudCA9IDEsCnN0YWNrRGVwdGggPSAxLApzdGF0dXMgPSAiYWN0aXZlIiwKdXNlck5hbWUgPSAiZW52L3NvZnR3YXJlL2RvbnBoYW4iLAp3ViA9ICIqZG9ucGhhbi4qemZpbmFsIiwKfSwKWyJlbnYvdnNjIl0gPSB7CmZuID0gIi9ldGMvbW9kdWxlZmlsZXMvdnNjL2Vudi92c2MvZG9ucGhhbi5sdWEiLApmdWxsTmFtZSA9ICJlbnYvdnNjL2RvbnBoYW4iLApsb2FkT3JkZXIgPSAxLApwcm9wVCA9IHsKbG1vZCA9IHsKc3RpY2t5ID0gMSwKfSwKfSwKcmVmX2NvdW50 (previous value: 'TWFrZS8zLjI2LjMtR0NDY29yZS0xMi4zLjAiLAp3ViA9ICIwMDAwMDAwMDMuMDAwMDAwMDI2LjAwMDAwMDAwMy4qZ2NjY29yZS4qemZpbmFsLS4wMDAwMDAwMTIuMDAwMDAwMDAzLip6ZmluYWwiLAp9LApGRlRXID0gewpmbiA9ICIvYXBwcy9nZW50L1JIRUw4L2Nhc2NhZGVsYWtlLWliL21vZHVsZXMvYWxsL0ZGVFcvMy4zLjEwLUdDQy0xMi4zLjAubHVhIiwKZnVsbE5hbWUgPSAiRkZUVy8zLjMuMTAtR0NDLTEyLjMuMCIsCmxvYWRPcmRlciA9IDIyLApwcm9wVCA9IHt9LApzdGFja0RlcHRoID0gMSwKc3RhdHVzID0gImFjdGl2ZSIsCnVzZXJOYW1lID0gIkZGVFcvMy4zLjEwLUdDQy0xMi4zLjAiLAp3ViA9ICIwMDAwMDAwMDMuMDAwMDAwMDAzLjAwMDAwMDAxMC4qZ2NjLip6') +== 2025-01-23 12:35:26,786 environment.py:93 INFO Environment variable _ModuleTable_Sz_ set to 4 (previous value: '66') +== 2025-01-23 12:35:26,786 environment.py:93 INFO Environment variable MANPATH set to :: (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/share/man:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/man:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/man:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/man:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/share/man:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/share/man::') +== 2025-01-23 12:35:26,786 environment.py:93 INFO Environment variable MODULEPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all:/apps/gent/RHEL8/cascadelake-ampere-ib/modules/all:/apps/gent/RHEL8/cascadelake-ib/modules/all:/etc/modulefiles/vsc (previous value: '/tmp/vsc47063/eb-m63ydakg/tmpzyt7lpk4/all:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all:/apps/gent/RHEL8/cascadelake-ampere-ib/modules/all:/apps/gent/RHEL8/cascadelake-ib/modules/all:/etc/modulefiles/vsc') +== 2025-01-23 12:35:26,786 environment.py:93 INFO Environment variable PATH set to /usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:35:26,786 environment.py:93 INFO Environment variable _LMFILES_ set to /etc/modulefiles/vsc/env/vsc/donphan.lua:/etc/modulefiles/vsc/env/slurm/donphan.lua:/etc/modulefiles/vsc/env/software/donphan.lua:/etc/modulefiles/vsc/cluster/donphan.lua (previous value: '/etc/modulefiles/vsc/env/vsc/donphan.lua:/etc/modulefiles/vsc/env/slurm/donphan.lua:/etc/modulefiles/vsc/env/software/donphan.lua:/etc/modulefiles/vsc/cluster/donphan.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/GCCcore/12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/zlib/1.2.13-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/binutils/2.40-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/GCC/12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/numactl/2.0.16-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/XZ/5.4.2-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/libxml2/2.11.4-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/libpciaccess/0.17-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/hwloc/2.9.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/OpenSSL/1.1.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/libevent/2.1.12-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/UCX/1.14.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/PMIx/4.2.4-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/UCC/1.2.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/OpenMPI/4.1.5-GCC-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/OpenBLAS/0.3.23-GCC-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/FlexiBLAS/3.3.1-GCC-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/FFTW/3.3.10-GCC-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/gompi/2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/FFTW.MPI/3.3.10-gompi-2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/ScaLAPACK/2.2.0-gompi-2023a-fb.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/foss/2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/bzip2/1.0.8-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/ncurses/6.4-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/libreadline/8.2-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/Tcl/8.6.13-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/SQLite/3.42.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/libffi/3.4.4-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/cffi/1.15.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/cryptography/41.0.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/virtualenv/20.23.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/Python-bundle-PyPI/2023.06-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/cURL/8.0.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/libarchive/3.6.2-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/CMake/3.26.3-GCCcore-12.3.0.lua:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all/scikit-build-core/0.9.3-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/hatchling/1.18.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/poetry/1.5.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/expat/2.5.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/gettext/0.21.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/Perl/5.36.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/git/2.41.0-GCCcore-12.3.0-nodocs.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/Python/3.11.3-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/gfbf/2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/pybind11/2.11.1-GCCcore-12.3.0.lua:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all/SciPy-bundle/2023.07-gfbf-2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/ml_dtypes/0.3.2-gfbf-2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/libyaml/0.2.5-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/PyYAML/6.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/Szip/2.1.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/HDF5/1.14.0-gompi-2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/h5py/3.9.0-foss-2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/dill/0.3.7-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/double-conversion/3.3.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/flatbuffers/23.5.26-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/flatbuffers-python/23.5.26-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/giflib/5.2.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/ICU/73.2-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/JsonCpp/1.9.5-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/NASM/2.16.01-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/nsync/1.26.0-GCCcore-12.3.0.lua:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all/patchelf/0.18.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/libpng/1.6.39-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/snappy/1.1.10-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/Abseil/20230125.3-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/protobuf/24.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/protobuf-python/4.24.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/grpcio/1.57.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/TensorFlow/2.15.1-foss-2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/absl-py/2.1.0-GCCcore-12.3.0.lua:/apps/gent/RHEL8/cascadelake-ampere-ib/modules/all/jax/0.4.25-gfbf-2023a.lua:/apps/gent/RHEL8/cascadelake-ib/modules/all/mpi4py/3.1.4-gompi-2023a.lua') +== 2025-01-23 12:35:26,786 environment.py:93 INFO Environment variable _ModuleTable005_ set to ZW50L1JIRUw4L2Nhc2NhZGVsYWtlLWliL21vZHVsZXMvYWxsL0dDQy8xMi4zLjAubHVhIiwKZnVsbE5hbWUgPSAiR0NDLzEyLjMuMCIsCmxvYWRPcmRlciA9IDgsCnByb3BUID0ge30sCnN0YWNrRGVwdGggPSAyLApzdGF0dXMgPSAiYWN0aXZlIiwKdXNlck5hbWUgPSAiR0NDLzEyLjMuMCIsCndWID0gIjAwMDAwMDAxMi4wMDAwMDAwMDMuKnpmaW5hbCIsCn0sCkdDQ2NvcmUgPSB7CmZuID0gIi9hcHBzL2dlbnQvUkhFTDgvY2FzY2FkZWxha2UtaWIvbW9kdWxlcy9hbGwvR0NDY29yZS8xMi4zLjAubHVhIiwKZnVsbE5hbWUgPSAiR0NDY29yZS8xMi4zLjAiLApsb2FkT3JkZXIgPSA1LApwcm9wVCA9IHt9LApzdGFja0RlcHRoID0gMywKc3RhdHVzID0gImFjdGl2ZSIsCnVzZXJO (previous value: 'ICIvYXBwcy9nZW50L1JIRUw4L2Nhc2NhZGVsYWtlLWliL21vZHVsZXMvYWxsL0ZsZXhpQkxBUy8zLjMuMS1HQ0MtMTIuMy4wLmx1YSIsCmZ1bGxOYW1lID0gIkZsZXhpQkxBUy8zLjMuMS1HQ0MtMTIuMy4wIiwKbG9hZE9yZGVyID0gMjEsCnByb3BUID0ge30sCnN0YWNrRGVwdGggPSAxLApzdGF0dXMgPSAiYWN0aXZlIiwKdXNlck5hbWUgPSAiRmxleGlCTEFTLzMuMy4xLUdDQy0xMi4zLjAiLAp3ViA9ICIwMDAwMDAwMDMuMDAwMDAwMDAzLjAwMDAwMDAwMS4qZ2NjLip6ZmluYWwtLjAwMDAwMDAxMi4wMDAwMDAwMDMuKnpmaW5hbCIsCn0sCkdDQyA9IHsKZm4gPSAiL2FwcHMvZ2VudC9SSEVMOC9jYXNjYWRlbGFrZS1pYi9tb2R1bGVzL2FsbC9HQ0MvMTIuMy4wLmx1YSIsCmZ1') +== 2025-01-23 12:35:26,792 modules.py:474 INFO $MODULEPATH set via list of module paths (w/ 'module use'): /tmp/vsc47063/eb-m63ydakg/tmpzyt7lpk4/all:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all:/apps/gent/RHEL8/cascadelake-ampere-ib/modules/all:/apps/gent/RHEL8/cascadelake-ib/modules/all:/etc/modulefiles/vsc +== 2025-01-23 12:35:39,333 environment.py:93 INFO Environment variable LD_LIBRARY_PATH set to /apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib') +== 2025-01-23 12:35:43,189 environment.py:93 INFO Environment variable LD_LIBRARY_PATH set to /apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Abseil/20230125.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/snappy/1.1.10-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/nsync/1.26.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/JsonCpp/1.9.5-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/double-conversion/3.3.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/Szip/2.1.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libyaml/0.2.5-GCCcore-12.3.0/lib:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages/numpy/core/lib:/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW.MPI/3.3.10-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenBLAS/0.3.23-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpciaccess/0.17-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/lib:/apps/gent/RHEL8/cascadelake-ib/software/libffi/3.4.4-GCCcore-12.3.0/lib64:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libreadline/8.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/zlib/1.2.13-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/Abseil/20230125.3-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/snappy/1.1.10-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/nsync/1.26.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/JsonCpp/1.9.5-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/double-conversion/3.3.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/Szip/2.1.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libyaml/0.2.5-GCCcore-12.3.0/lib:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages/numpy/core/lib:/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW.MPI/3.3.10-gompi-2023a/lib:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenBLAS/0.3.23-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/libpciaccess/0.17-GCCcore-12.3.0/lib:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/lib') +== 2025-01-23 12:35:43,190 environment.py:93 INFO Environment variable PYTHONNOUSERSITE set to 1 (previously undefined) +== 2025-01-23 12:35:43,190 easyblock.py:2907 INFO Installing extensions +== 2025-01-23 12:35:43,203 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:35:43,204 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:35:43,204 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:35:43,204 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:35:43,204 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:35:43,204 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:35:43,206 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:35:43,206 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:35:43,206 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:35:43,207 easyconfig.py:1913 INFO Derived full easyblock module path for PythonBundle: easybuild.easyblocks.generic.pythonbundle +== 2025-01-23 12:35:43,207 easyconfig.py:1962 INFO Successfully obtained class 'PythonBundle' for easyblock 'PythonBundle' (software name 'DeePDM-kit') +== 2025-01-23 12:35:43,207 easyconfig.py:708 INFO Parsing easyconfig file None with rawcontent: easyblock = 'PythonBundle' + +name = 'DeePDM-kit' +version = '3.0.1' +# versionsuffix = '-CUDA-%(cudaver)s' + +homepage = 'https://github.com/deepmodeling/deepmd-kit/' +description = "A deep learning package for many-body potential energy representation and molecular dynamics." + +toolchain = {'name': 'foss', 'version': '2023a'} + +# DEPS: + # OK scikit-build-core>=0.5,<0.11,!=0.6.0 + # OK 'numpy>=1.21', + # OK 'scipy', + # OK 'pyyaml', + # ok 'dargs >= 0.4.7', + # OK "h5py>=3.6.0,!=3.11.0; platform_system=='Linux' and platform_machine=='aarch64'", + # ok 'wcmatch', + # OK 'ml_dtypes', + # ok 'mendeleev', + # ok 'array-api-compat', + # ok dpdata + # parallel training deps: + # NO horovod - + # OK mpi4py + +builddependencies = [ + ('scikit-build-core', '0.9.3'), + ('hatchling', '1.18.0'), + ('poetry', '1.5.1'), + ('git', '2.41.0', '-nodocs'), +] +dependencies = [ + # ('CUDA', '12.6.0', '', SYSTEM), + ('Python', '3.11.3'), + ('SciPy-bundle', '2023.07'), + ('ml_dtypes', '0.3.2'), + ('PyYAML', '6.0'), + ('h5py', '3.9.0'), + ('TensorFlow', '2.15.1'), + ('jax', '0.4.25'), + ('mpi4py', '3.1.4'), + # ('protobuf', '24.0'), + # horovod +] + +use_pip = True +sanity_pip_check = True + +# preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' + +exts_list = [ + ('dargs', '0.4.10', { + 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], + }), + ('wcmatch', '8.5.2', { + 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], + }), + ('mendeleev', '0.20.1', { + 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + }), + ('array_api_compat', '1.10.0', { + 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], + }), + ('dpdata', '0.2.21', { + 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], + }), + ('deepmd_kit', version, { + 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], + }), +] + +# sanity_check_paths = { +# 'files': ['bin/%(name)s'], +# 'dirs': ['lib/python%(pyshortver)s/site-packages'], +# } + +# sanity_check_commands = ['%(name)s --help'] + +moduleclass = 'ai' + +# E1: + # same problem as with horovod: https://github.com/vscentrum/vsc-software-stack/issues/390#issuecomment-2304201251 + # <- during pip install deepmd-kit: + # error This file was generated by an older version of protoc + # error incompatible with your Protocol Buffer headers + # error regenerate this file with a newer version of protoc. +== 2025-01-23 12:35:43,208 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:35:43,208 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('scikit-build-core', '0.9.3'), ('hatchling', '1.18.0'), ('poetry', '1.5.1'), ('git', '2.41.0', '-nodocs')] (type: ) +== 2025-01-23 12:35:43,208 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('Python', '3.11.3'), ('SciPy-bundle', '2023.07'), ('ml_dtypes', '0.3.2'), ('PyYAML', '6.0'), ('h5py', '3.9.0'), ('TensorFlow', '2.15.1'), ('jax', '0.4.25'), ('mpi4py', '3.1.4')] (type: ) +== 2025-01-23 12:35:43,208 easyconfig.py:689 INFO setting easyconfig parameter description: value A deep learning package for many-body potential energy representation and molecular dynamics. (type: ) +== 2025-01-23 12:35:43,208 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value PythonBundle (type: ) +== 2025-01-23 12:35:43,208 easyconfig.py:689 INFO setting easyconfig parameter exts_list: value [('dargs', '0.4.10', {'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8']}), ('wcmatch', '8.5.2', {'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2']}), ('mendeleev', '0.20.1', {'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da']}), ('array_api_compat', '1.10.0', {'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad']}), ('dpdata', '0.2.21', {'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1']}), ('deepmd_kit', '3.0.1', {'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff']})] (type: ) +== 2025-01-23 12:35:43,209 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://github.com/deepmodeling/deepmd-kit/ (type: ) +== 2025-01-23 12:35:43,209 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value ai (type: ) +== 2025-01-23 12:35:43,209 easyconfig.py:689 INFO setting easyconfig parameter name: value DeePDM-kit (type: ) +== 2025-01-23 12:35:43,209 easyconfig.py:689 INFO setting easyconfig parameter sanity_pip_check: value True (type: ) +== 2025-01-23 12:35:43,209 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'foss', 'version': '2023a'} (type: ) +== 2025-01-23 12:35:43,209 easyconfig.py:689 INFO setting easyconfig parameter use_pip: value True (type: ) +== 2025-01-23 12:35:43,209 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.0.1 (type: ) +== 2025-01-23 12:35:43,209 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:35:43,209 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:35:43,210 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:35:43,211 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:43,214 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:43,214 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:43,214 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:46,907 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-foss-2023a exists... +== 2025-01-23 12:35:46,907 modules.py:649 INFO Module scikit-build-core/0.9.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,912 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-foss-2023a module: False +== 2025-01-23 12:35:46,912 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gompi-2023a exists... +== 2025-01-23 12:35:46,912 modules.py:649 INFO Module scikit-build-core/0.9.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,912 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gompi-2023a module: False +== 2025-01-23 12:35:46,912 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gfbf-2023a exists... +== 2025-01-23 12:35:46,912 modules.py:649 INFO Module scikit-build-core/0.9.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,913 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gfbf-2023a module: False +== 2025-01-23 12:35:46,913 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,913 modules.py:649 INFO Module scikit-build-core/0.9.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,913 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,913 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,915 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,915 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,916 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,916 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'scikit-build-core', 'version': '0.9.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:46,917 modules.py:628 INFO Checking whether hatchling/1.18.0-foss-2023a exists... +== 2025-01-23 12:35:46,917 modules.py:649 INFO Module hatchling/1.18.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,918 modules.py:656 INFO Result for existence check of hatchling/1.18.0-foss-2023a module: False +== 2025-01-23 12:35:46,918 modules.py:628 INFO Checking whether hatchling/1.18.0-gompi-2023a exists... +== 2025-01-23 12:35:46,918 modules.py:649 INFO Module hatchling/1.18.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,918 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gompi-2023a module: False +== 2025-01-23 12:35:46,918 modules.py:628 INFO Checking whether hatchling/1.18.0-gfbf-2023a exists... +== 2025-01-23 12:35:46,918 modules.py:649 INFO Module hatchling/1.18.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,919 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gfbf-2023a module: False +== 2025-01-23 12:35:46,919 modules.py:628 INFO Checking whether hatchling/1.18.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,919 modules.py:649 INFO Module hatchling/1.18.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,919 modules.py:656 INFO Result for existence check of hatchling/1.18.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,919 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,920 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,920 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,920 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,920 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'hatchling', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:46,922 modules.py:628 INFO Checking whether poetry/1.5.1-foss-2023a exists... +== 2025-01-23 12:35:46,922 modules.py:649 INFO Module poetry/1.5.1-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,922 modules.py:656 INFO Result for existence check of poetry/1.5.1-foss-2023a module: False +== 2025-01-23 12:35:46,922 modules.py:628 INFO Checking whether poetry/1.5.1-gompi-2023a exists... +== 2025-01-23 12:35:46,922 modules.py:649 INFO Module poetry/1.5.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,923 modules.py:656 INFO Result for existence check of poetry/1.5.1-gompi-2023a module: False +== 2025-01-23 12:35:46,923 modules.py:628 INFO Checking whether poetry/1.5.1-gfbf-2023a exists... +== 2025-01-23 12:35:46,923 modules.py:649 INFO Module poetry/1.5.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,923 modules.py:656 INFO Result for existence check of poetry/1.5.1-gfbf-2023a module: False +== 2025-01-23 12:35:46,923 modules.py:628 INFO Checking whether poetry/1.5.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,923 modules.py:649 INFO Module poetry/1.5.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,924 modules.py:656 INFO Result for existence check of poetry/1.5.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,924 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,925 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,925 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,926 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,926 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'poetry', 'version': '1.5.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:46,927 modules.py:628 INFO Checking whether git/2.41.0-foss-2023a-nodocs exists... +== 2025-01-23 12:35:46,927 modules.py:649 INFO Module git/2.41.0-foss-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,927 modules.py:656 INFO Result for existence check of git/2.41.0-foss-2023a-nodocs module: False +== 2025-01-23 12:35:46,927 modules.py:628 INFO Checking whether git/2.41.0-gompi-2023a-nodocs exists... +== 2025-01-23 12:35:46,928 modules.py:649 INFO Module git/2.41.0-gompi-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,928 modules.py:656 INFO Result for existence check of git/2.41.0-gompi-2023a-nodocs module: False +== 2025-01-23 12:35:46,928 modules.py:628 INFO Checking whether git/2.41.0-gfbf-2023a-nodocs exists... +== 2025-01-23 12:35:46,928 modules.py:649 INFO Module git/2.41.0-gfbf-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,928 modules.py:656 INFO Result for existence check of git/2.41.0-gfbf-2023a-nodocs module: False +== 2025-01-23 12:35:46,928 modules.py:628 INFO Checking whether git/2.41.0-GCC-12.3.0-nodocs exists... +== 2025-01-23 12:35:46,928 modules.py:649 INFO Module git/2.41.0-GCC-12.3.0-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,929 modules.py:656 INFO Result for existence check of git/2.41.0-GCC-12.3.0-nodocs module: False +== 2025-01-23 12:35:46,929 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,930 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,930 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,930 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,930 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'git', 'version': '2.41.0', 'versionsuffix': '-nodocs', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:46,932 modules.py:628 INFO Checking whether Python/3.11.3-foss-2023a exists... +== 2025-01-23 12:35:46,932 modules.py:649 INFO Module Python/3.11.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,933 modules.py:656 INFO Result for existence check of Python/3.11.3-foss-2023a module: False +== 2025-01-23 12:35:46,933 modules.py:628 INFO Checking whether Python/3.11.3-gompi-2023a exists... +== 2025-01-23 12:35:46,933 modules.py:649 INFO Module Python/3.11.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,933 modules.py:656 INFO Result for existence check of Python/3.11.3-gompi-2023a module: False +== 2025-01-23 12:35:46,933 modules.py:628 INFO Checking whether Python/3.11.3-gfbf-2023a exists... +== 2025-01-23 12:35:46,933 modules.py:649 INFO Module Python/3.11.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,934 modules.py:656 INFO Result for existence check of Python/3.11.3-gfbf-2023a module: False +== 2025-01-23 12:35:46,934 modules.py:628 INFO Checking whether Python/3.11.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,934 modules.py:649 INFO Module Python/3.11.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,934 modules.py:656 INFO Result for existence check of Python/3.11.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,934 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,935 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,935 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,935 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,935 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Python', 'version': '3.11.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:46,937 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-foss-2023a exists... +== 2025-01-23 12:35:46,937 modules.py:649 INFO Module SciPy-bundle/2023.07-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,938 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-foss-2023a module: False +== 2025-01-23 12:35:46,938 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-gompi-2023a exists... +== 2025-01-23 12:35:46,938 modules.py:649 INFO Module SciPy-bundle/2023.07-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,938 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-gompi-2023a module: False +== 2025-01-23 12:35:46,938 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,938 modules.py:649 INFO Module SciPy-bundle/2023.07-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,939 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,939 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:46,939 modules.py:649 INFO Module SciPy-bundle/2023.07-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,939 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:46,939 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,940 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,940 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'SciPy-bundle', 'version': '2023.07', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:46,941 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-foss-2023a exists... +== 2025-01-23 12:35:46,942 modules.py:649 INFO Module ml_dtypes/0.3.2-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,942 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-foss-2023a module: False +== 2025-01-23 12:35:46,942 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-gompi-2023a exists... +== 2025-01-23 12:35:46,942 modules.py:649 INFO Module ml_dtypes/0.3.2-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,942 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-gompi-2023a module: False +== 2025-01-23 12:35:46,943 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,943 modules.py:649 INFO Module ml_dtypes/0.3.2-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,943 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,943 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:46,943 modules.py:649 INFO Module ml_dtypes/0.3.2-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,943 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:46,943 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,945 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,945 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'ml_dtypes', 'version': '0.3.2', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:46,946 modules.py:628 INFO Checking whether PyYAML/6.0-foss-2023a exists... +== 2025-01-23 12:35:46,946 modules.py:649 INFO Module PyYAML/6.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,947 modules.py:656 INFO Result for existence check of PyYAML/6.0-foss-2023a module: False +== 2025-01-23 12:35:46,947 modules.py:628 INFO Checking whether PyYAML/6.0-gompi-2023a exists... +== 2025-01-23 12:35:46,948 modules.py:649 INFO Module PyYAML/6.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,948 modules.py:656 INFO Result for existence check of PyYAML/6.0-gompi-2023a module: False +== 2025-01-23 12:35:46,948 modules.py:628 INFO Checking whether PyYAML/6.0-gfbf-2023a exists... +== 2025-01-23 12:35:46,948 modules.py:649 INFO Module PyYAML/6.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,948 modules.py:656 INFO Result for existence check of PyYAML/6.0-gfbf-2023a module: False +== 2025-01-23 12:35:46,948 modules.py:628 INFO Checking whether PyYAML/6.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,948 modules.py:649 INFO Module PyYAML/6.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,949 modules.py:656 INFO Result for existence check of PyYAML/6.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,949 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,949 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,949 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,949 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,950 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'PyYAML', 'version': '6.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:46,951 modules.py:628 INFO Checking whether h5py/3.9.0-gompi-2023a exists... +== 2025-01-23 12:35:46,951 modules.py:649 INFO Module h5py/3.9.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,951 modules.py:656 INFO Result for existence check of h5py/3.9.0-gompi-2023a module: False +== 2025-01-23 12:35:46,951 modules.py:628 INFO Checking whether h5py/3.9.0-gfbf-2023a exists... +== 2025-01-23 12:35:46,951 modules.py:649 INFO Module h5py/3.9.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,952 modules.py:656 INFO Result for existence check of h5py/3.9.0-gfbf-2023a module: False +== 2025-01-23 12:35:46,952 modules.py:628 INFO Checking whether h5py/3.9.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,952 modules.py:649 INFO Module h5py/3.9.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,952 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,952 modules.py:628 INFO Checking whether h5py/3.9.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:46,952 modules.py:649 INFO Module h5py/3.9.0-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,953 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:46,953 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'h5py', 'version': '3.9.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:46,954 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gompi-2023a exists... +== 2025-01-23 12:35:46,954 modules.py:649 INFO Module TensorFlow/2.15.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,955 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gompi-2023a module: False +== 2025-01-23 12:35:46,955 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gfbf-2023a exists... +== 2025-01-23 12:35:46,955 modules.py:649 INFO Module TensorFlow/2.15.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,955 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gfbf-2023a module: False +== 2025-01-23 12:35:46,955 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,955 modules.py:649 INFO Module TensorFlow/2.15.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,956 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,956 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:46,956 modules.py:649 INFO Module TensorFlow/2.15.1-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,956 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:46,956 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'TensorFlow', 'version': '2.15.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:46,957 modules.py:628 INFO Checking whether jax/0.4.25-gompi-2023a exists... +== 2025-01-23 12:35:46,958 modules.py:649 INFO Module jax/0.4.25-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,958 modules.py:656 INFO Result for existence check of jax/0.4.25-gompi-2023a module: False +== 2025-01-23 12:35:46,958 modules.py:628 INFO Checking whether jax/0.4.25-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,958 modules.py:649 INFO Module jax/0.4.25-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,959 modules.py:656 INFO Result for existence check of jax/0.4.25-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,959 modules.py:628 INFO Checking whether jax/0.4.25-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:46,959 modules.py:649 INFO Module jax/0.4.25-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,959 modules.py:656 INFO Result for existence check of jax/0.4.25-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:46,959 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,960 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,960 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'jax', 'version': '0.4.25', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:46,962 modules.py:628 INFO Checking whether mpi4py/3.1.4-foss-2023a exists... +== 2025-01-23 12:35:46,962 modules.py:649 INFO Module mpi4py/3.1.4-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,963 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-foss-2023a module: False +== 2025-01-23 12:35:46,963 modules.py:628 INFO Checking whether mpi4py/3.1.4-gfbf-2023a exists... +== 2025-01-23 12:35:46,963 modules.py:649 INFO Module mpi4py/3.1.4-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,963 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-gfbf-2023a module: False +== 2025-01-23 12:35:46,963 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,963 modules.py:649 INFO Module mpi4py/3.1.4-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,964 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,964 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:46,964 modules.py:649 INFO Module mpi4py/3.1.4-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,964 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:46,964 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,965 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'mpi4py', 'version': '3.1.4', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gompi', 'version': '2023a'} +== 2025-01-23 12:35:46,967 pythonpackage.py:433 INFO Using default value for expected module name (lowercase software name): 'dargs' +== 2025-01-23 12:35:46,967 pythonpackage.py:476 INFO Using pip with --no-deps option +== 2025-01-23 12:35:46,967 pythonpackage.py:503 INFO Using '%(python)s -m pip install --prefix=%(prefix)s %(installopts)s %(loc)s' as install command +== 2025-01-23 12:35:46,967 environment.py:93 INFO Environment variable XDG_CACHE_HOME set to /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home (previously undefined) +== 2025-01-23 12:35:46,967 pythonpackage.py:453 INFO Using /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home as pip cache directory +== 2025-01-23 12:35:46,967 environment.py:93 INFO Environment variable PIP_REQUIRE_VIRTUALENV set to false (previously undefined) +== 2025-01-23 12:35:46,967 environment.py:93 INFO Environment variable PIP_DISABLE_PIP_VERSION_CHECK set to true (previously undefined) +== 2025-01-23 12:35:46,977 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:35:46,978 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:35:46,978 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:35:46,978 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:35:46,978 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:35:46,978 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:35:46,980 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:35:46,980 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:35:46,980 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:35:46,981 easyconfig.py:1913 INFO Derived full easyblock module path for PythonBundle: easybuild.easyblocks.generic.pythonbundle +== 2025-01-23 12:35:46,981 easyconfig.py:1962 INFO Successfully obtained class 'PythonBundle' for easyblock 'PythonBundle' (software name 'DeePDM-kit') +== 2025-01-23 12:35:46,981 easyconfig.py:708 INFO Parsing easyconfig file None with rawcontent: easyblock = 'PythonBundle' + +name = 'DeePDM-kit' +version = '3.0.1' +# versionsuffix = '-CUDA-%(cudaver)s' + +homepage = 'https://github.com/deepmodeling/deepmd-kit/' +description = "A deep learning package for many-body potential energy representation and molecular dynamics." + +toolchain = {'name': 'foss', 'version': '2023a'} + +# DEPS: + # OK scikit-build-core>=0.5,<0.11,!=0.6.0 + # OK 'numpy>=1.21', + # OK 'scipy', + # OK 'pyyaml', + # ok 'dargs >= 0.4.7', + # OK "h5py>=3.6.0,!=3.11.0; platform_system=='Linux' and platform_machine=='aarch64'", + # ok 'wcmatch', + # OK 'ml_dtypes', + # ok 'mendeleev', + # ok 'array-api-compat', + # ok dpdata + # parallel training deps: + # NO horovod - + # OK mpi4py + +builddependencies = [ + ('scikit-build-core', '0.9.3'), + ('hatchling', '1.18.0'), + ('poetry', '1.5.1'), + ('git', '2.41.0', '-nodocs'), +] +dependencies = [ + # ('CUDA', '12.6.0', '', SYSTEM), + ('Python', '3.11.3'), + ('SciPy-bundle', '2023.07'), + ('ml_dtypes', '0.3.2'), + ('PyYAML', '6.0'), + ('h5py', '3.9.0'), + ('TensorFlow', '2.15.1'), + ('jax', '0.4.25'), + ('mpi4py', '3.1.4'), + # ('protobuf', '24.0'), + # horovod +] + +use_pip = True +sanity_pip_check = True + +# preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' + +exts_list = [ + ('dargs', '0.4.10', { + 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], + }), + ('wcmatch', '8.5.2', { + 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], + }), + ('mendeleev', '0.20.1', { + 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + }), + ('array_api_compat', '1.10.0', { + 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], + }), + ('dpdata', '0.2.21', { + 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], + }), + ('deepmd_kit', version, { + 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], + }), +] + +# sanity_check_paths = { +# 'files': ['bin/%(name)s'], +# 'dirs': ['lib/python%(pyshortver)s/site-packages'], +# } + +# sanity_check_commands = ['%(name)s --help'] + +moduleclass = 'ai' + +# E1: + # same problem as with horovod: https://github.com/vscentrum/vsc-software-stack/issues/390#issuecomment-2304201251 + # <- during pip install deepmd-kit: + # error This file was generated by an older version of protoc + # error incompatible with your Protocol Buffer headers + # error regenerate this file with a newer version of protoc. +== 2025-01-23 12:35:46,982 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('scikit-build-core', '0.9.3'), ('hatchling', '1.18.0'), ('poetry', '1.5.1'), ('git', '2.41.0', '-nodocs')] (type: ) +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('Python', '3.11.3'), ('SciPy-bundle', '2023.07'), ('ml_dtypes', '0.3.2'), ('PyYAML', '6.0'), ('h5py', '3.9.0'), ('TensorFlow', '2.15.1'), ('jax', '0.4.25'), ('mpi4py', '3.1.4')] (type: ) +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter description: value A deep learning package for many-body potential energy representation and molecular dynamics. (type: ) +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value PythonBundle (type: ) +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter exts_list: value [('dargs', '0.4.10', {'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8']}), ('wcmatch', '8.5.2', {'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2']}), ('mendeleev', '0.20.1', {'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da']}), ('array_api_compat', '1.10.0', {'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad']}), ('dpdata', '0.2.21', {'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1']}), ('deepmd_kit', '3.0.1', {'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff']})] (type: ) +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://github.com/deepmodeling/deepmd-kit/ (type: ) +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value ai (type: ) +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter name: value DeePDM-kit (type: ) +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter sanity_pip_check: value True (type: ) +== 2025-01-23 12:35:46,982 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'foss', 'version': '2023a'} (type: ) +== 2025-01-23 12:35:46,983 easyconfig.py:689 INFO setting easyconfig parameter use_pip: value True (type: ) +== 2025-01-23 12:35:46,983 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.0.1 (type: ) +== 2025-01-23 12:35:46,983 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:35:46,983 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:35:46,984 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:35:46,984 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:46,986 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:46,987 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:46,987 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:46,988 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-foss-2023a exists... +== 2025-01-23 12:35:46,988 modules.py:649 INFO Module scikit-build-core/0.9.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,988 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-foss-2023a module: False +== 2025-01-23 12:35:46,988 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gompi-2023a exists... +== 2025-01-23 12:35:46,989 modules.py:649 INFO Module scikit-build-core/0.9.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,989 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gompi-2023a module: False +== 2025-01-23 12:35:46,989 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gfbf-2023a exists... +== 2025-01-23 12:35:46,989 modules.py:649 INFO Module scikit-build-core/0.9.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,989 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gfbf-2023a module: False +== 2025-01-23 12:35:46,989 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,989 modules.py:649 INFO Module scikit-build-core/0.9.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,990 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,990 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,990 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,990 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,990 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,990 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'scikit-build-core', 'version': '0.9.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:46,992 modules.py:628 INFO Checking whether hatchling/1.18.0-foss-2023a exists... +== 2025-01-23 12:35:46,992 modules.py:649 INFO Module hatchling/1.18.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,992 modules.py:656 INFO Result for existence check of hatchling/1.18.0-foss-2023a module: False +== 2025-01-23 12:35:46,992 modules.py:628 INFO Checking whether hatchling/1.18.0-gompi-2023a exists... +== 2025-01-23 12:35:46,992 modules.py:649 INFO Module hatchling/1.18.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,992 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gompi-2023a module: False +== 2025-01-23 12:35:46,993 modules.py:628 INFO Checking whether hatchling/1.18.0-gfbf-2023a exists... +== 2025-01-23 12:35:46,993 modules.py:649 INFO Module hatchling/1.18.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,993 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gfbf-2023a module: False +== 2025-01-23 12:35:46,993 modules.py:628 INFO Checking whether hatchling/1.18.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,993 modules.py:649 INFO Module hatchling/1.18.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,993 modules.py:656 INFO Result for existence check of hatchling/1.18.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,993 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,994 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,994 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,994 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,994 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'hatchling', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:46,995 modules.py:628 INFO Checking whether poetry/1.5.1-foss-2023a exists... +== 2025-01-23 12:35:46,995 modules.py:649 INFO Module poetry/1.5.1-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,995 modules.py:656 INFO Result for existence check of poetry/1.5.1-foss-2023a module: False +== 2025-01-23 12:35:46,996 modules.py:628 INFO Checking whether poetry/1.5.1-gompi-2023a exists... +== 2025-01-23 12:35:46,996 modules.py:649 INFO Module poetry/1.5.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,996 modules.py:656 INFO Result for existence check of poetry/1.5.1-gompi-2023a module: False +== 2025-01-23 12:35:46,996 modules.py:628 INFO Checking whether poetry/1.5.1-gfbf-2023a exists... +== 2025-01-23 12:35:46,996 modules.py:649 INFO Module poetry/1.5.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,996 modules.py:656 INFO Result for existence check of poetry/1.5.1-gfbf-2023a module: False +== 2025-01-23 12:35:46,997 modules.py:628 INFO Checking whether poetry/1.5.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:46,997 modules.py:649 INFO Module poetry/1.5.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,997 modules.py:656 INFO Result for existence check of poetry/1.5.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:46,997 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,997 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,997 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,997 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:46,997 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'poetry', 'version': '1.5.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:46,999 modules.py:628 INFO Checking whether git/2.41.0-foss-2023a-nodocs exists... +== 2025-01-23 12:35:46,999 modules.py:649 INFO Module git/2.41.0-foss-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,999 modules.py:656 INFO Result for existence check of git/2.41.0-foss-2023a-nodocs module: False +== 2025-01-23 12:35:46,999 modules.py:628 INFO Checking whether git/2.41.0-gompi-2023a-nodocs exists... +== 2025-01-23 12:35:46,999 modules.py:649 INFO Module git/2.41.0-gompi-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:46,999 modules.py:656 INFO Result for existence check of git/2.41.0-gompi-2023a-nodocs module: False +== 2025-01-23 12:35:47,000 modules.py:628 INFO Checking whether git/2.41.0-gfbf-2023a-nodocs exists... +== 2025-01-23 12:35:47,000 modules.py:649 INFO Module git/2.41.0-gfbf-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,000 modules.py:656 INFO Result for existence check of git/2.41.0-gfbf-2023a-nodocs module: False +== 2025-01-23 12:35:47,000 modules.py:628 INFO Checking whether git/2.41.0-GCC-12.3.0-nodocs exists... +== 2025-01-23 12:35:47,000 modules.py:649 INFO Module git/2.41.0-GCC-12.3.0-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,000 modules.py:656 INFO Result for existence check of git/2.41.0-GCC-12.3.0-nodocs module: False +== 2025-01-23 12:35:47,000 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,001 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,001 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,001 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,001 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'git', 'version': '2.41.0', 'versionsuffix': '-nodocs', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,002 modules.py:628 INFO Checking whether Python/3.11.3-foss-2023a exists... +== 2025-01-23 12:35:47,002 modules.py:649 INFO Module Python/3.11.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,003 modules.py:656 INFO Result for existence check of Python/3.11.3-foss-2023a module: False +== 2025-01-23 12:35:47,003 modules.py:628 INFO Checking whether Python/3.11.3-gompi-2023a exists... +== 2025-01-23 12:35:47,003 modules.py:649 INFO Module Python/3.11.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,003 modules.py:656 INFO Result for existence check of Python/3.11.3-gompi-2023a module: False +== 2025-01-23 12:35:47,003 modules.py:628 INFO Checking whether Python/3.11.3-gfbf-2023a exists... +== 2025-01-23 12:35:47,003 modules.py:649 INFO Module Python/3.11.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,004 modules.py:656 INFO Result for existence check of Python/3.11.3-gfbf-2023a module: False +== 2025-01-23 12:35:47,004 modules.py:628 INFO Checking whether Python/3.11.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,004 modules.py:649 INFO Module Python/3.11.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,004 modules.py:656 INFO Result for existence check of Python/3.11.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,004 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,004 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,004 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,004 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,005 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Python', 'version': '3.11.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,006 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-foss-2023a exists... +== 2025-01-23 12:35:47,006 modules.py:649 INFO Module SciPy-bundle/2023.07-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,006 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-foss-2023a module: False +== 2025-01-23 12:35:47,006 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-gompi-2023a exists... +== 2025-01-23 12:35:47,006 modules.py:649 INFO Module SciPy-bundle/2023.07-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,007 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-gompi-2023a module: False +== 2025-01-23 12:35:47,007 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,007 modules.py:649 INFO Module SciPy-bundle/2023.07-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,007 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,007 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,007 modules.py:649 INFO Module SciPy-bundle/2023.07-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,008 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,008 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,008 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,008 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'SciPy-bundle', 'version': '2023.07', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,009 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-foss-2023a exists... +== 2025-01-23 12:35:47,009 modules.py:649 INFO Module ml_dtypes/0.3.2-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,009 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-foss-2023a module: False +== 2025-01-23 12:35:47,010 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-gompi-2023a exists... +== 2025-01-23 12:35:47,010 modules.py:649 INFO Module ml_dtypes/0.3.2-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,010 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-gompi-2023a module: False +== 2025-01-23 12:35:47,010 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,010 modules.py:649 INFO Module ml_dtypes/0.3.2-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,010 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,011 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,011 modules.py:649 INFO Module ml_dtypes/0.3.2-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,011 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,011 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,011 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,011 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'ml_dtypes', 'version': '0.3.2', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,012 modules.py:628 INFO Checking whether PyYAML/6.0-foss-2023a exists... +== 2025-01-23 12:35:47,013 modules.py:649 INFO Module PyYAML/6.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,013 modules.py:656 INFO Result for existence check of PyYAML/6.0-foss-2023a module: False +== 2025-01-23 12:35:47,013 modules.py:628 INFO Checking whether PyYAML/6.0-gompi-2023a exists... +== 2025-01-23 12:35:47,013 modules.py:649 INFO Module PyYAML/6.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,013 modules.py:656 INFO Result for existence check of PyYAML/6.0-gompi-2023a module: False +== 2025-01-23 12:35:47,013 modules.py:628 INFO Checking whether PyYAML/6.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,013 modules.py:649 INFO Module PyYAML/6.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,014 modules.py:656 INFO Result for existence check of PyYAML/6.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,014 modules.py:628 INFO Checking whether PyYAML/6.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,014 modules.py:649 INFO Module PyYAML/6.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,014 modules.py:656 INFO Result for existence check of PyYAML/6.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,014 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,014 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,014 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,015 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,015 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'PyYAML', 'version': '6.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,016 modules.py:628 INFO Checking whether h5py/3.9.0-gompi-2023a exists... +== 2025-01-23 12:35:47,016 modules.py:649 INFO Module h5py/3.9.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,016 modules.py:656 INFO Result for existence check of h5py/3.9.0-gompi-2023a module: False +== 2025-01-23 12:35:47,016 modules.py:628 INFO Checking whether h5py/3.9.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,017 modules.py:649 INFO Module h5py/3.9.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,017 modules.py:656 INFO Result for existence check of h5py/3.9.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,017 modules.py:628 INFO Checking whether h5py/3.9.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,017 modules.py:649 INFO Module h5py/3.9.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,017 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,017 modules.py:628 INFO Checking whether h5py/3.9.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,017 modules.py:649 INFO Module h5py/3.9.0-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,018 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,018 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'h5py', 'version': '3.9.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,019 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gompi-2023a exists... +== 2025-01-23 12:35:47,019 modules.py:649 INFO Module TensorFlow/2.15.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,019 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gompi-2023a module: False +== 2025-01-23 12:35:47,019 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gfbf-2023a exists... +== 2025-01-23 12:35:47,020 modules.py:649 INFO Module TensorFlow/2.15.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,020 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gfbf-2023a module: False +== 2025-01-23 12:35:47,020 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,020 modules.py:649 INFO Module TensorFlow/2.15.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,020 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,020 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,020 modules.py:649 INFO Module TensorFlow/2.15.1-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,021 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,021 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'TensorFlow', 'version': '2.15.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,022 modules.py:628 INFO Checking whether jax/0.4.25-gompi-2023a exists... +== 2025-01-23 12:35:47,022 modules.py:649 INFO Module jax/0.4.25-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,022 modules.py:656 INFO Result for existence check of jax/0.4.25-gompi-2023a module: False +== 2025-01-23 12:35:47,023 modules.py:628 INFO Checking whether jax/0.4.25-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,023 modules.py:649 INFO Module jax/0.4.25-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,023 modules.py:656 INFO Result for existence check of jax/0.4.25-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,023 modules.py:628 INFO Checking whether jax/0.4.25-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,023 modules.py:649 INFO Module jax/0.4.25-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,023 modules.py:656 INFO Result for existence check of jax/0.4.25-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,023 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,024 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,024 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'jax', 'version': '0.4.25', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,025 modules.py:628 INFO Checking whether mpi4py/3.1.4-foss-2023a exists... +== 2025-01-23 12:35:47,025 modules.py:649 INFO Module mpi4py/3.1.4-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,025 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-foss-2023a module: False +== 2025-01-23 12:35:47,025 modules.py:628 INFO Checking whether mpi4py/3.1.4-gfbf-2023a exists... +== 2025-01-23 12:35:47,026 modules.py:649 INFO Module mpi4py/3.1.4-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,026 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-gfbf-2023a module: False +== 2025-01-23 12:35:47,026 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,026 modules.py:649 INFO Module mpi4py/3.1.4-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,026 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,026 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,026 modules.py:649 INFO Module mpi4py/3.1.4-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,027 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,027 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,027 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'mpi4py', 'version': '3.1.4', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gompi', 'version': '2023a'} +== 2025-01-23 12:35:47,029 pythonpackage.py:433 INFO Using default value for expected module name (lowercase software name): 'wcmatch' +== 2025-01-23 12:35:47,029 pythonpackage.py:476 INFO Using pip with --no-deps option +== 2025-01-23 12:35:47,029 pythonpackage.py:503 INFO Using '%(python)s -m pip install --prefix=%(prefix)s %(installopts)s %(loc)s' as install command +== 2025-01-23 12:35:47,029 environment.py:93 INFO Environment variable XDG_CACHE_HOME set to /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home (previous value: '/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home') +== 2025-01-23 12:35:47,029 pythonpackage.py:453 INFO Using /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home as pip cache directory +== 2025-01-23 12:35:47,029 environment.py:93 INFO Environment variable PIP_REQUIRE_VIRTUALENV set to false (previous value: 'false') +== 2025-01-23 12:35:47,029 environment.py:93 INFO Environment variable PIP_DISABLE_PIP_VERSION_CHECK set to true (previous value: 'true') +== 2025-01-23 12:35:47,030 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:35:47,031 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:35:47,031 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:35:47,031 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:35:47,031 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:35:47,031 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:35:47,032 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:35:47,032 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:35:47,032 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:35:47,033 easyconfig.py:1913 INFO Derived full easyblock module path for PythonBundle: easybuild.easyblocks.generic.pythonbundle +== 2025-01-23 12:35:47,033 easyconfig.py:1962 INFO Successfully obtained class 'PythonBundle' for easyblock 'PythonBundle' (software name 'DeePDM-kit') +== 2025-01-23 12:35:47,033 easyconfig.py:708 INFO Parsing easyconfig file None with rawcontent: easyblock = 'PythonBundle' + +name = 'DeePDM-kit' +version = '3.0.1' +# versionsuffix = '-CUDA-%(cudaver)s' + +homepage = 'https://github.com/deepmodeling/deepmd-kit/' +description = "A deep learning package for many-body potential energy representation and molecular dynamics." + +toolchain = {'name': 'foss', 'version': '2023a'} + +# DEPS: + # OK scikit-build-core>=0.5,<0.11,!=0.6.0 + # OK 'numpy>=1.21', + # OK 'scipy', + # OK 'pyyaml', + # ok 'dargs >= 0.4.7', + # OK "h5py>=3.6.0,!=3.11.0; platform_system=='Linux' and platform_machine=='aarch64'", + # ok 'wcmatch', + # OK 'ml_dtypes', + # ok 'mendeleev', + # ok 'array-api-compat', + # ok dpdata + # parallel training deps: + # NO horovod - + # OK mpi4py + +builddependencies = [ + ('scikit-build-core', '0.9.3'), + ('hatchling', '1.18.0'), + ('poetry', '1.5.1'), + ('git', '2.41.0', '-nodocs'), +] +dependencies = [ + # ('CUDA', '12.6.0', '', SYSTEM), + ('Python', '3.11.3'), + ('SciPy-bundle', '2023.07'), + ('ml_dtypes', '0.3.2'), + ('PyYAML', '6.0'), + ('h5py', '3.9.0'), + ('TensorFlow', '2.15.1'), + ('jax', '0.4.25'), + ('mpi4py', '3.1.4'), + # ('protobuf', '24.0'), + # horovod +] + +use_pip = True +sanity_pip_check = True + +# preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' + +exts_list = [ + ('dargs', '0.4.10', { + 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], + }), + ('wcmatch', '8.5.2', { + 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], + }), + ('mendeleev', '0.20.1', { + 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + }), + ('array_api_compat', '1.10.0', { + 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], + }), + ('dpdata', '0.2.21', { + 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], + }), + ('deepmd_kit', version, { + 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], + }), +] + +# sanity_check_paths = { +# 'files': ['bin/%(name)s'], +# 'dirs': ['lib/python%(pyshortver)s/site-packages'], +# } + +# sanity_check_commands = ['%(name)s --help'] + +moduleclass = 'ai' + +# E1: + # same problem as with horovod: https://github.com/vscentrum/vsc-software-stack/issues/390#issuecomment-2304201251 + # <- during pip install deepmd-kit: + # error This file was generated by an older version of protoc + # error incompatible with your Protocol Buffer headers + # error regenerate this file with a newer version of protoc. +== 2025-01-23 12:35:47,034 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:35:47,034 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('scikit-build-core', '0.9.3'), ('hatchling', '1.18.0'), ('poetry', '1.5.1'), ('git', '2.41.0', '-nodocs')] (type: ) +== 2025-01-23 12:35:47,034 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('Python', '3.11.3'), ('SciPy-bundle', '2023.07'), ('ml_dtypes', '0.3.2'), ('PyYAML', '6.0'), ('h5py', '3.9.0'), ('TensorFlow', '2.15.1'), ('jax', '0.4.25'), ('mpi4py', '3.1.4')] (type: ) +== 2025-01-23 12:35:47,034 easyconfig.py:689 INFO setting easyconfig parameter description: value A deep learning package for many-body potential energy representation and molecular dynamics. (type: ) +== 2025-01-23 12:35:47,034 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value PythonBundle (type: ) +== 2025-01-23 12:35:47,034 easyconfig.py:689 INFO setting easyconfig parameter exts_list: value [('dargs', '0.4.10', {'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8']}), ('wcmatch', '8.5.2', {'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2']}), ('mendeleev', '0.20.1', {'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da']}), ('array_api_compat', '1.10.0', {'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad']}), ('dpdata', '0.2.21', {'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1']}), ('deepmd_kit', '3.0.1', {'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff']})] (type: ) +== 2025-01-23 12:35:47,034 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://github.com/deepmodeling/deepmd-kit/ (type: ) +== 2025-01-23 12:35:47,034 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value ai (type: ) +== 2025-01-23 12:35:47,034 easyconfig.py:689 INFO setting easyconfig parameter name: value DeePDM-kit (type: ) +== 2025-01-23 12:35:47,034 easyconfig.py:689 INFO setting easyconfig parameter sanity_pip_check: value True (type: ) +== 2025-01-23 12:35:47,035 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'foss', 'version': '2023a'} (type: ) +== 2025-01-23 12:35:47,035 easyconfig.py:689 INFO setting easyconfig parameter use_pip: value True (type: ) +== 2025-01-23 12:35:47,035 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.0.1 (type: ) +== 2025-01-23 12:35:47,035 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:35:47,035 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:35:47,036 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:35:47,036 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:47,037 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:47,037 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:47,037 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:47,039 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-foss-2023a exists... +== 2025-01-23 12:35:47,039 modules.py:649 INFO Module scikit-build-core/0.9.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,039 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-foss-2023a module: False +== 2025-01-23 12:35:47,039 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gompi-2023a exists... +== 2025-01-23 12:35:47,039 modules.py:649 INFO Module scikit-build-core/0.9.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,039 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gompi-2023a module: False +== 2025-01-23 12:35:47,040 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gfbf-2023a exists... +== 2025-01-23 12:35:47,040 modules.py:649 INFO Module scikit-build-core/0.9.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,040 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gfbf-2023a module: False +== 2025-01-23 12:35:47,040 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,040 modules.py:649 INFO Module scikit-build-core/0.9.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,040 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,040 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,041 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,041 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,041 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,041 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'scikit-build-core', 'version': '0.9.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,042 modules.py:628 INFO Checking whether hatchling/1.18.0-foss-2023a exists... +== 2025-01-23 12:35:47,042 modules.py:649 INFO Module hatchling/1.18.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,043 modules.py:656 INFO Result for existence check of hatchling/1.18.0-foss-2023a module: False +== 2025-01-23 12:35:47,043 modules.py:628 INFO Checking whether hatchling/1.18.0-gompi-2023a exists... +== 2025-01-23 12:35:47,043 modules.py:649 INFO Module hatchling/1.18.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,043 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gompi-2023a module: False +== 2025-01-23 12:35:47,043 modules.py:628 INFO Checking whether hatchling/1.18.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,043 modules.py:649 INFO Module hatchling/1.18.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,043 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,044 modules.py:628 INFO Checking whether hatchling/1.18.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,044 modules.py:649 INFO Module hatchling/1.18.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,044 modules.py:656 INFO Result for existence check of hatchling/1.18.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,044 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,044 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,044 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,044 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,044 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'hatchling', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,046 modules.py:628 INFO Checking whether poetry/1.5.1-foss-2023a exists... +== 2025-01-23 12:35:47,046 modules.py:649 INFO Module poetry/1.5.1-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,046 modules.py:656 INFO Result for existence check of poetry/1.5.1-foss-2023a module: False +== 2025-01-23 12:35:47,046 modules.py:628 INFO Checking whether poetry/1.5.1-gompi-2023a exists... +== 2025-01-23 12:35:47,046 modules.py:649 INFO Module poetry/1.5.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,046 modules.py:656 INFO Result for existence check of poetry/1.5.1-gompi-2023a module: False +== 2025-01-23 12:35:47,047 modules.py:628 INFO Checking whether poetry/1.5.1-gfbf-2023a exists... +== 2025-01-23 12:35:47,047 modules.py:649 INFO Module poetry/1.5.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,047 modules.py:656 INFO Result for existence check of poetry/1.5.1-gfbf-2023a module: False +== 2025-01-23 12:35:47,047 modules.py:628 INFO Checking whether poetry/1.5.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,047 modules.py:649 INFO Module poetry/1.5.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,047 modules.py:656 INFO Result for existence check of poetry/1.5.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,048 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,048 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,048 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,048 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,048 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'poetry', 'version': '1.5.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,049 modules.py:628 INFO Checking whether git/2.41.0-foss-2023a-nodocs exists... +== 2025-01-23 12:35:47,049 modules.py:649 INFO Module git/2.41.0-foss-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,050 modules.py:656 INFO Result for existence check of git/2.41.0-foss-2023a-nodocs module: False +== 2025-01-23 12:35:47,050 modules.py:628 INFO Checking whether git/2.41.0-gompi-2023a-nodocs exists... +== 2025-01-23 12:35:47,050 modules.py:649 INFO Module git/2.41.0-gompi-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,050 modules.py:656 INFO Result for existence check of git/2.41.0-gompi-2023a-nodocs module: False +== 2025-01-23 12:35:47,050 modules.py:628 INFO Checking whether git/2.41.0-gfbf-2023a-nodocs exists... +== 2025-01-23 12:35:47,050 modules.py:649 INFO Module git/2.41.0-gfbf-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,050 modules.py:656 INFO Result for existence check of git/2.41.0-gfbf-2023a-nodocs module: False +== 2025-01-23 12:35:47,051 modules.py:628 INFO Checking whether git/2.41.0-GCC-12.3.0-nodocs exists... +== 2025-01-23 12:35:47,051 modules.py:649 INFO Module git/2.41.0-GCC-12.3.0-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,051 modules.py:656 INFO Result for existence check of git/2.41.0-GCC-12.3.0-nodocs module: False +== 2025-01-23 12:35:47,051 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,051 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,051 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,051 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,052 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'git', 'version': '2.41.0', 'versionsuffix': '-nodocs', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,053 modules.py:628 INFO Checking whether Python/3.11.3-foss-2023a exists... +== 2025-01-23 12:35:47,053 modules.py:649 INFO Module Python/3.11.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,053 modules.py:656 INFO Result for existence check of Python/3.11.3-foss-2023a module: False +== 2025-01-23 12:35:47,053 modules.py:628 INFO Checking whether Python/3.11.3-gompi-2023a exists... +== 2025-01-23 12:35:47,053 modules.py:649 INFO Module Python/3.11.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,054 modules.py:656 INFO Result for existence check of Python/3.11.3-gompi-2023a module: False +== 2025-01-23 12:35:47,054 modules.py:628 INFO Checking whether Python/3.11.3-gfbf-2023a exists... +== 2025-01-23 12:35:47,054 modules.py:649 INFO Module Python/3.11.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,054 modules.py:656 INFO Result for existence check of Python/3.11.3-gfbf-2023a module: False +== 2025-01-23 12:35:47,054 modules.py:628 INFO Checking whether Python/3.11.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,054 modules.py:649 INFO Module Python/3.11.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,055 modules.py:656 INFO Result for existence check of Python/3.11.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,055 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,055 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,055 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,055 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,055 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Python', 'version': '3.11.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,056 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-foss-2023a exists... +== 2025-01-23 12:35:47,056 modules.py:649 INFO Module SciPy-bundle/2023.07-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,057 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-foss-2023a module: False +== 2025-01-23 12:35:47,057 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-gompi-2023a exists... +== 2025-01-23 12:35:47,057 modules.py:649 INFO Module SciPy-bundle/2023.07-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,057 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-gompi-2023a module: False +== 2025-01-23 12:35:47,057 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,057 modules.py:649 INFO Module SciPy-bundle/2023.07-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,058 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,058 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,058 modules.py:649 INFO Module SciPy-bundle/2023.07-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,058 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,058 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,058 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,058 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'SciPy-bundle', 'version': '2023.07', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,060 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-foss-2023a exists... +== 2025-01-23 12:35:47,060 modules.py:649 INFO Module ml_dtypes/0.3.2-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,060 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-foss-2023a module: False +== 2025-01-23 12:35:47,060 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-gompi-2023a exists... +== 2025-01-23 12:35:47,060 modules.py:649 INFO Module ml_dtypes/0.3.2-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,060 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-gompi-2023a module: False +== 2025-01-23 12:35:47,061 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,061 modules.py:649 INFO Module ml_dtypes/0.3.2-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,061 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,061 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,061 modules.py:649 INFO Module ml_dtypes/0.3.2-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,061 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,061 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,062 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,062 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'ml_dtypes', 'version': '0.3.2', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,063 modules.py:628 INFO Checking whether PyYAML/6.0-foss-2023a exists... +== 2025-01-23 12:35:47,063 modules.py:649 INFO Module PyYAML/6.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,063 modules.py:656 INFO Result for existence check of PyYAML/6.0-foss-2023a module: False +== 2025-01-23 12:35:47,063 modules.py:628 INFO Checking whether PyYAML/6.0-gompi-2023a exists... +== 2025-01-23 12:35:47,063 modules.py:649 INFO Module PyYAML/6.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,064 modules.py:656 INFO Result for existence check of PyYAML/6.0-gompi-2023a module: False +== 2025-01-23 12:35:47,064 modules.py:628 INFO Checking whether PyYAML/6.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,064 modules.py:649 INFO Module PyYAML/6.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,064 modules.py:656 INFO Result for existence check of PyYAML/6.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,064 modules.py:628 INFO Checking whether PyYAML/6.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,064 modules.py:649 INFO Module PyYAML/6.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,065 modules.py:656 INFO Result for existence check of PyYAML/6.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,065 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,065 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,065 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,065 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,065 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'PyYAML', 'version': '6.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,066 modules.py:628 INFO Checking whether h5py/3.9.0-gompi-2023a exists... +== 2025-01-23 12:35:47,067 modules.py:649 INFO Module h5py/3.9.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,067 modules.py:656 INFO Result for existence check of h5py/3.9.0-gompi-2023a module: False +== 2025-01-23 12:35:47,067 modules.py:628 INFO Checking whether h5py/3.9.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,067 modules.py:649 INFO Module h5py/3.9.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,067 modules.py:656 INFO Result for existence check of h5py/3.9.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,067 modules.py:628 INFO Checking whether h5py/3.9.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,067 modules.py:649 INFO Module h5py/3.9.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,068 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,068 modules.py:628 INFO Checking whether h5py/3.9.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,068 modules.py:649 INFO Module h5py/3.9.0-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,068 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,068 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'h5py', 'version': '3.9.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,069 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gompi-2023a exists... +== 2025-01-23 12:35:47,070 modules.py:649 INFO Module TensorFlow/2.15.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,070 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gompi-2023a module: False +== 2025-01-23 12:35:47,070 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gfbf-2023a exists... +== 2025-01-23 12:35:47,070 modules.py:649 INFO Module TensorFlow/2.15.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,070 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gfbf-2023a module: False +== 2025-01-23 12:35:47,070 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,070 modules.py:649 INFO Module TensorFlow/2.15.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,071 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,071 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,071 modules.py:649 INFO Module TensorFlow/2.15.1-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,071 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,071 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'TensorFlow', 'version': '2.15.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,073 modules.py:628 INFO Checking whether jax/0.4.25-gompi-2023a exists... +== 2025-01-23 12:35:47,073 modules.py:649 INFO Module jax/0.4.25-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,073 modules.py:656 INFO Result for existence check of jax/0.4.25-gompi-2023a module: False +== 2025-01-23 12:35:47,073 modules.py:628 INFO Checking whether jax/0.4.25-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,073 modules.py:649 INFO Module jax/0.4.25-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,073 modules.py:656 INFO Result for existence check of jax/0.4.25-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,074 modules.py:628 INFO Checking whether jax/0.4.25-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,074 modules.py:649 INFO Module jax/0.4.25-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,074 modules.py:656 INFO Result for existence check of jax/0.4.25-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,074 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,074 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,074 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'jax', 'version': '0.4.25', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,075 modules.py:628 INFO Checking whether mpi4py/3.1.4-foss-2023a exists... +== 2025-01-23 12:35:47,075 modules.py:649 INFO Module mpi4py/3.1.4-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,076 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-foss-2023a module: False +== 2025-01-23 12:35:47,076 modules.py:628 INFO Checking whether mpi4py/3.1.4-gfbf-2023a exists... +== 2025-01-23 12:35:47,076 modules.py:649 INFO Module mpi4py/3.1.4-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,076 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-gfbf-2023a module: False +== 2025-01-23 12:35:47,076 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,076 modules.py:649 INFO Module mpi4py/3.1.4-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,077 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,077 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,077 modules.py:649 INFO Module mpi4py/3.1.4-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,077 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,077 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,077 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'mpi4py', 'version': '3.1.4', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gompi', 'version': '2023a'} +== 2025-01-23 12:35:47,079 pythonpackage.py:433 INFO Using default value for expected module name (lowercase software name): 'mendeleev' +== 2025-01-23 12:35:47,079 pythonpackage.py:476 INFO Using pip with --no-deps option +== 2025-01-23 12:35:47,079 pythonpackage.py:503 INFO Using '%(python)s -m pip install --prefix=%(prefix)s %(installopts)s %(loc)s' as install command +== 2025-01-23 12:35:47,079 environment.py:93 INFO Environment variable XDG_CACHE_HOME set to /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home (previous value: '/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home') +== 2025-01-23 12:35:47,079 pythonpackage.py:453 INFO Using /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home as pip cache directory +== 2025-01-23 12:35:47,079 environment.py:93 INFO Environment variable PIP_REQUIRE_VIRTUALENV set to false (previous value: 'false') +== 2025-01-23 12:35:47,079 environment.py:93 INFO Environment variable PIP_DISABLE_PIP_VERSION_CHECK set to true (previous value: 'true') +== 2025-01-23 12:35:47,080 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:35:47,081 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:35:47,081 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:35:47,081 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:35:47,081 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:35:47,081 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:35:47,082 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:35:47,082 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:35:47,082 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:35:47,083 easyconfig.py:1913 INFO Derived full easyblock module path for PythonBundle: easybuild.easyblocks.generic.pythonbundle +== 2025-01-23 12:35:47,083 easyconfig.py:1962 INFO Successfully obtained class 'PythonBundle' for easyblock 'PythonBundle' (software name 'DeePDM-kit') +== 2025-01-23 12:35:47,083 easyconfig.py:708 INFO Parsing easyconfig file None with rawcontent: easyblock = 'PythonBundle' + +name = 'DeePDM-kit' +version = '3.0.1' +# versionsuffix = '-CUDA-%(cudaver)s' + +homepage = 'https://github.com/deepmodeling/deepmd-kit/' +description = "A deep learning package for many-body potential energy representation and molecular dynamics." + +toolchain = {'name': 'foss', 'version': '2023a'} + +# DEPS: + # OK scikit-build-core>=0.5,<0.11,!=0.6.0 + # OK 'numpy>=1.21', + # OK 'scipy', + # OK 'pyyaml', + # ok 'dargs >= 0.4.7', + # OK "h5py>=3.6.0,!=3.11.0; platform_system=='Linux' and platform_machine=='aarch64'", + # ok 'wcmatch', + # OK 'ml_dtypes', + # ok 'mendeleev', + # ok 'array-api-compat', + # ok dpdata + # parallel training deps: + # NO horovod - + # OK mpi4py + +builddependencies = [ + ('scikit-build-core', '0.9.3'), + ('hatchling', '1.18.0'), + ('poetry', '1.5.1'), + ('git', '2.41.0', '-nodocs'), +] +dependencies = [ + # ('CUDA', '12.6.0', '', SYSTEM), + ('Python', '3.11.3'), + ('SciPy-bundle', '2023.07'), + ('ml_dtypes', '0.3.2'), + ('PyYAML', '6.0'), + ('h5py', '3.9.0'), + ('TensorFlow', '2.15.1'), + ('jax', '0.4.25'), + ('mpi4py', '3.1.4'), + # ('protobuf', '24.0'), + # horovod +] + +use_pip = True +sanity_pip_check = True + +# preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' + +exts_list = [ + ('dargs', '0.4.10', { + 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], + }), + ('wcmatch', '8.5.2', { + 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], + }), + ('mendeleev', '0.20.1', { + 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + }), + ('array_api_compat', '1.10.0', { + 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], + }), + ('dpdata', '0.2.21', { + 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], + }), + ('deepmd_kit', version, { + 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], + }), +] + +# sanity_check_paths = { +# 'files': ['bin/%(name)s'], +# 'dirs': ['lib/python%(pyshortver)s/site-packages'], +# } + +# sanity_check_commands = ['%(name)s --help'] + +moduleclass = 'ai' + +# E1: + # same problem as with horovod: https://github.com/vscentrum/vsc-software-stack/issues/390#issuecomment-2304201251 + # <- during pip install deepmd-kit: + # error This file was generated by an older version of protoc + # error incompatible with your Protocol Buffer headers + # error regenerate this file with a newer version of protoc. +== 2025-01-23 12:35:47,084 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:35:47,084 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('scikit-build-core', '0.9.3'), ('hatchling', '1.18.0'), ('poetry', '1.5.1'), ('git', '2.41.0', '-nodocs')] (type: ) +== 2025-01-23 12:35:47,084 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('Python', '3.11.3'), ('SciPy-bundle', '2023.07'), ('ml_dtypes', '0.3.2'), ('PyYAML', '6.0'), ('h5py', '3.9.0'), ('TensorFlow', '2.15.1'), ('jax', '0.4.25'), ('mpi4py', '3.1.4')] (type: ) +== 2025-01-23 12:35:47,084 easyconfig.py:689 INFO setting easyconfig parameter description: value A deep learning package for many-body potential energy representation and molecular dynamics. (type: ) +== 2025-01-23 12:35:47,084 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value PythonBundle (type: ) +== 2025-01-23 12:35:47,084 easyconfig.py:689 INFO setting easyconfig parameter exts_list: value [('dargs', '0.4.10', {'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8']}), ('wcmatch', '8.5.2', {'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2']}), ('mendeleev', '0.20.1', {'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da']}), ('array_api_compat', '1.10.0', {'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad']}), ('dpdata', '0.2.21', {'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1']}), ('deepmd_kit', '3.0.1', {'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff']})] (type: ) +== 2025-01-23 12:35:47,084 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://github.com/deepmodeling/deepmd-kit/ (type: ) +== 2025-01-23 12:35:47,084 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value ai (type: ) +== 2025-01-23 12:35:47,084 easyconfig.py:689 INFO setting easyconfig parameter name: value DeePDM-kit (type: ) +== 2025-01-23 12:35:47,085 easyconfig.py:689 INFO setting easyconfig parameter sanity_pip_check: value True (type: ) +== 2025-01-23 12:35:47,085 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'foss', 'version': '2023a'} (type: ) +== 2025-01-23 12:35:47,085 easyconfig.py:689 INFO setting easyconfig parameter use_pip: value True (type: ) +== 2025-01-23 12:35:47,085 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.0.1 (type: ) +== 2025-01-23 12:35:47,085 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:35:47,085 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:35:47,086 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:35:47,086 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:47,087 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:47,087 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:47,087 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:47,089 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-foss-2023a exists... +== 2025-01-23 12:35:47,089 modules.py:649 INFO Module scikit-build-core/0.9.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,089 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-foss-2023a module: False +== 2025-01-23 12:35:47,089 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gompi-2023a exists... +== 2025-01-23 12:35:47,089 modules.py:649 INFO Module scikit-build-core/0.9.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,089 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gompi-2023a module: False +== 2025-01-23 12:35:47,090 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gfbf-2023a exists... +== 2025-01-23 12:35:47,090 modules.py:649 INFO Module scikit-build-core/0.9.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,090 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gfbf-2023a module: False +== 2025-01-23 12:35:47,090 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,090 modules.py:649 INFO Module scikit-build-core/0.9.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,090 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,091 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,091 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,091 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,091 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,091 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'scikit-build-core', 'version': '0.9.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,092 modules.py:628 INFO Checking whether hatchling/1.18.0-foss-2023a exists... +== 2025-01-23 12:35:47,092 modules.py:649 INFO Module hatchling/1.18.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,093 modules.py:656 INFO Result for existence check of hatchling/1.18.0-foss-2023a module: False +== 2025-01-23 12:35:47,093 modules.py:628 INFO Checking whether hatchling/1.18.0-gompi-2023a exists... +== 2025-01-23 12:35:47,093 modules.py:649 INFO Module hatchling/1.18.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,093 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gompi-2023a module: False +== 2025-01-23 12:35:47,093 modules.py:628 INFO Checking whether hatchling/1.18.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,093 modules.py:649 INFO Module hatchling/1.18.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,093 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,094 modules.py:628 INFO Checking whether hatchling/1.18.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,094 modules.py:649 INFO Module hatchling/1.18.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,094 modules.py:656 INFO Result for existence check of hatchling/1.18.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,094 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,094 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,094 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,094 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,094 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'hatchling', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,096 modules.py:628 INFO Checking whether poetry/1.5.1-foss-2023a exists... +== 2025-01-23 12:35:47,096 modules.py:649 INFO Module poetry/1.5.1-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,096 modules.py:656 INFO Result for existence check of poetry/1.5.1-foss-2023a module: False +== 2025-01-23 12:35:47,096 modules.py:628 INFO Checking whether poetry/1.5.1-gompi-2023a exists... +== 2025-01-23 12:35:47,096 modules.py:649 INFO Module poetry/1.5.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,097 modules.py:656 INFO Result for existence check of poetry/1.5.1-gompi-2023a module: False +== 2025-01-23 12:35:47,097 modules.py:628 INFO Checking whether poetry/1.5.1-gfbf-2023a exists... +== 2025-01-23 12:35:47,097 modules.py:649 INFO Module poetry/1.5.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,097 modules.py:656 INFO Result for existence check of poetry/1.5.1-gfbf-2023a module: False +== 2025-01-23 12:35:47,097 modules.py:628 INFO Checking whether poetry/1.5.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,097 modules.py:649 INFO Module poetry/1.5.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,097 modules.py:656 INFO Result for existence check of poetry/1.5.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,098 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,098 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,098 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,098 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,098 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'poetry', 'version': '1.5.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,099 modules.py:628 INFO Checking whether git/2.41.0-foss-2023a-nodocs exists... +== 2025-01-23 12:35:47,099 modules.py:649 INFO Module git/2.41.0-foss-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,100 modules.py:656 INFO Result for existence check of git/2.41.0-foss-2023a-nodocs module: False +== 2025-01-23 12:35:47,100 modules.py:628 INFO Checking whether git/2.41.0-gompi-2023a-nodocs exists... +== 2025-01-23 12:35:47,100 modules.py:649 INFO Module git/2.41.0-gompi-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,100 modules.py:656 INFO Result for existence check of git/2.41.0-gompi-2023a-nodocs module: False +== 2025-01-23 12:35:47,100 modules.py:628 INFO Checking whether git/2.41.0-gfbf-2023a-nodocs exists... +== 2025-01-23 12:35:47,100 modules.py:649 INFO Module git/2.41.0-gfbf-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,101 modules.py:656 INFO Result for existence check of git/2.41.0-gfbf-2023a-nodocs module: False +== 2025-01-23 12:35:47,101 modules.py:628 INFO Checking whether git/2.41.0-GCC-12.3.0-nodocs exists... +== 2025-01-23 12:35:47,101 modules.py:649 INFO Module git/2.41.0-GCC-12.3.0-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,101 modules.py:656 INFO Result for existence check of git/2.41.0-GCC-12.3.0-nodocs module: False +== 2025-01-23 12:35:47,101 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,101 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,101 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,101 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,102 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'git', 'version': '2.41.0', 'versionsuffix': '-nodocs', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,103 modules.py:628 INFO Checking whether Python/3.11.3-foss-2023a exists... +== 2025-01-23 12:35:47,103 modules.py:649 INFO Module Python/3.11.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,103 modules.py:656 INFO Result for existence check of Python/3.11.3-foss-2023a module: False +== 2025-01-23 12:35:47,103 modules.py:628 INFO Checking whether Python/3.11.3-gompi-2023a exists... +== 2025-01-23 12:35:47,104 modules.py:649 INFO Module Python/3.11.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,104 modules.py:656 INFO Result for existence check of Python/3.11.3-gompi-2023a module: False +== 2025-01-23 12:35:47,104 modules.py:628 INFO Checking whether Python/3.11.3-gfbf-2023a exists... +== 2025-01-23 12:35:47,104 modules.py:649 INFO Module Python/3.11.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,104 modules.py:656 INFO Result for existence check of Python/3.11.3-gfbf-2023a module: False +== 2025-01-23 12:35:47,104 modules.py:628 INFO Checking whether Python/3.11.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,105 modules.py:649 INFO Module Python/3.11.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,105 modules.py:656 INFO Result for existence check of Python/3.11.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,105 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,105 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,105 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,105 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,105 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Python', 'version': '3.11.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,107 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-foss-2023a exists... +== 2025-01-23 12:35:47,107 modules.py:649 INFO Module SciPy-bundle/2023.07-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,107 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-foss-2023a module: False +== 2025-01-23 12:35:47,107 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-gompi-2023a exists... +== 2025-01-23 12:35:47,107 modules.py:649 INFO Module SciPy-bundle/2023.07-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,107 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-gompi-2023a module: False +== 2025-01-23 12:35:47,108 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,108 modules.py:649 INFO Module SciPy-bundle/2023.07-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,108 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,108 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,108 modules.py:649 INFO Module SciPy-bundle/2023.07-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,108 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,108 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,108 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,109 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'SciPy-bundle', 'version': '2023.07', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,110 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-foss-2023a exists... +== 2025-01-23 12:35:47,110 modules.py:649 INFO Module ml_dtypes/0.3.2-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,110 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-foss-2023a module: False +== 2025-01-23 12:35:47,110 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-gompi-2023a exists... +== 2025-01-23 12:35:47,110 modules.py:649 INFO Module ml_dtypes/0.3.2-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,111 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-gompi-2023a module: False +== 2025-01-23 12:35:47,111 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,111 modules.py:649 INFO Module ml_dtypes/0.3.2-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,111 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,111 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,111 modules.py:649 INFO Module ml_dtypes/0.3.2-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,112 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,112 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,112 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,112 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'ml_dtypes', 'version': '0.3.2', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,113 modules.py:628 INFO Checking whether PyYAML/6.0-foss-2023a exists... +== 2025-01-23 12:35:47,113 modules.py:649 INFO Module PyYAML/6.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,113 modules.py:656 INFO Result for existence check of PyYAML/6.0-foss-2023a module: False +== 2025-01-23 12:35:47,114 modules.py:628 INFO Checking whether PyYAML/6.0-gompi-2023a exists... +== 2025-01-23 12:35:47,114 modules.py:649 INFO Module PyYAML/6.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,114 modules.py:656 INFO Result for existence check of PyYAML/6.0-gompi-2023a module: False +== 2025-01-23 12:35:47,114 modules.py:628 INFO Checking whether PyYAML/6.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,114 modules.py:649 INFO Module PyYAML/6.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,114 modules.py:656 INFO Result for existence check of PyYAML/6.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,115 modules.py:628 INFO Checking whether PyYAML/6.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,115 modules.py:649 INFO Module PyYAML/6.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,115 modules.py:656 INFO Result for existence check of PyYAML/6.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,115 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,115 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,115 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,115 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,115 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'PyYAML', 'version': '6.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,117 modules.py:628 INFO Checking whether h5py/3.9.0-gompi-2023a exists... +== 2025-01-23 12:35:47,117 modules.py:649 INFO Module h5py/3.9.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,117 modules.py:656 INFO Result for existence check of h5py/3.9.0-gompi-2023a module: False +== 2025-01-23 12:35:47,117 modules.py:628 INFO Checking whether h5py/3.9.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,117 modules.py:649 INFO Module h5py/3.9.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,117 modules.py:656 INFO Result for existence check of h5py/3.9.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,118 modules.py:628 INFO Checking whether h5py/3.9.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,118 modules.py:649 INFO Module h5py/3.9.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,118 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,118 modules.py:628 INFO Checking whether h5py/3.9.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,118 modules.py:649 INFO Module h5py/3.9.0-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,118 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,118 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'h5py', 'version': '3.9.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,120 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gompi-2023a exists... +== 2025-01-23 12:35:47,120 modules.py:649 INFO Module TensorFlow/2.15.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,120 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gompi-2023a module: False +== 2025-01-23 12:35:47,120 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gfbf-2023a exists... +== 2025-01-23 12:35:47,120 modules.py:649 INFO Module TensorFlow/2.15.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,120 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gfbf-2023a module: False +== 2025-01-23 12:35:47,121 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,121 modules.py:649 INFO Module TensorFlow/2.15.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,121 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,121 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,121 modules.py:649 INFO Module TensorFlow/2.15.1-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,121 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,121 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'TensorFlow', 'version': '2.15.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,123 modules.py:628 INFO Checking whether jax/0.4.25-gompi-2023a exists... +== 2025-01-23 12:35:47,123 modules.py:649 INFO Module jax/0.4.25-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,123 modules.py:656 INFO Result for existence check of jax/0.4.25-gompi-2023a module: False +== 2025-01-23 12:35:47,123 modules.py:628 INFO Checking whether jax/0.4.25-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,123 modules.py:649 INFO Module jax/0.4.25-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,124 modules.py:656 INFO Result for existence check of jax/0.4.25-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,124 modules.py:628 INFO Checking whether jax/0.4.25-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,124 modules.py:649 INFO Module jax/0.4.25-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,124 modules.py:656 INFO Result for existence check of jax/0.4.25-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,124 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,124 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,124 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'jax', 'version': '0.4.25', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,126 modules.py:628 INFO Checking whether mpi4py/3.1.4-foss-2023a exists... +== 2025-01-23 12:35:47,126 modules.py:649 INFO Module mpi4py/3.1.4-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,126 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-foss-2023a module: False +== 2025-01-23 12:35:47,126 modules.py:628 INFO Checking whether mpi4py/3.1.4-gfbf-2023a exists... +== 2025-01-23 12:35:47,126 modules.py:649 INFO Module mpi4py/3.1.4-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,126 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-gfbf-2023a module: False +== 2025-01-23 12:35:47,127 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,127 modules.py:649 INFO Module mpi4py/3.1.4-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,127 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,127 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,127 modules.py:649 INFO Module mpi4py/3.1.4-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,127 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,127 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,127 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'mpi4py', 'version': '3.1.4', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gompi', 'version': '2023a'} +== 2025-01-23 12:35:47,129 pythonpackage.py:433 INFO Using default value for expected module name (lowercase software name): 'array_api_compat' +== 2025-01-23 12:35:47,129 pythonpackage.py:476 INFO Using pip with --no-deps option +== 2025-01-23 12:35:47,129 pythonpackage.py:503 INFO Using '%(python)s -m pip install --prefix=%(prefix)s %(installopts)s %(loc)s' as install command +== 2025-01-23 12:35:47,129 environment.py:93 INFO Environment variable XDG_CACHE_HOME set to /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home (previous value: '/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home') +== 2025-01-23 12:35:47,129 pythonpackage.py:453 INFO Using /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home as pip cache directory +== 2025-01-23 12:35:47,130 environment.py:93 INFO Environment variable PIP_REQUIRE_VIRTUALENV set to false (previous value: 'false') +== 2025-01-23 12:35:47,130 environment.py:93 INFO Environment variable PIP_DISABLE_PIP_VERSION_CHECK set to true (previous value: 'true') +== 2025-01-23 12:35:47,131 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:35:47,131 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:35:47,131 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:35:47,132 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:35:47,132 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:35:47,132 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:35:47,132 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:35:47,132 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:35:47,133 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:35:47,133 easyconfig.py:1913 INFO Derived full easyblock module path for PythonBundle: easybuild.easyblocks.generic.pythonbundle +== 2025-01-23 12:35:47,133 easyconfig.py:1962 INFO Successfully obtained class 'PythonBundle' for easyblock 'PythonBundle' (software name 'DeePDM-kit') +== 2025-01-23 12:35:47,134 easyconfig.py:708 INFO Parsing easyconfig file None with rawcontent: easyblock = 'PythonBundle' + +name = 'DeePDM-kit' +version = '3.0.1' +# versionsuffix = '-CUDA-%(cudaver)s' + +homepage = 'https://github.com/deepmodeling/deepmd-kit/' +description = "A deep learning package for many-body potential energy representation and molecular dynamics." + +toolchain = {'name': 'foss', 'version': '2023a'} + +# DEPS: + # OK scikit-build-core>=0.5,<0.11,!=0.6.0 + # OK 'numpy>=1.21', + # OK 'scipy', + # OK 'pyyaml', + # ok 'dargs >= 0.4.7', + # OK "h5py>=3.6.0,!=3.11.0; platform_system=='Linux' and platform_machine=='aarch64'", + # ok 'wcmatch', + # OK 'ml_dtypes', + # ok 'mendeleev', + # ok 'array-api-compat', + # ok dpdata + # parallel training deps: + # NO horovod - + # OK mpi4py + +builddependencies = [ + ('scikit-build-core', '0.9.3'), + ('hatchling', '1.18.0'), + ('poetry', '1.5.1'), + ('git', '2.41.0', '-nodocs'), +] +dependencies = [ + # ('CUDA', '12.6.0', '', SYSTEM), + ('Python', '3.11.3'), + ('SciPy-bundle', '2023.07'), + ('ml_dtypes', '0.3.2'), + ('PyYAML', '6.0'), + ('h5py', '3.9.0'), + ('TensorFlow', '2.15.1'), + ('jax', '0.4.25'), + ('mpi4py', '3.1.4'), + # ('protobuf', '24.0'), + # horovod +] + +use_pip = True +sanity_pip_check = True + +# preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' + +exts_list = [ + ('dargs', '0.4.10', { + 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], + }), + ('wcmatch', '8.5.2', { + 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], + }), + ('mendeleev', '0.20.1', { + 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + }), + ('array_api_compat', '1.10.0', { + 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], + }), + ('dpdata', '0.2.21', { + 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], + }), + ('deepmd_kit', version, { + 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], + }), +] + +# sanity_check_paths = { +# 'files': ['bin/%(name)s'], +# 'dirs': ['lib/python%(pyshortver)s/site-packages'], +# } + +# sanity_check_commands = ['%(name)s --help'] + +moduleclass = 'ai' + +# E1: + # same problem as with horovod: https://github.com/vscentrum/vsc-software-stack/issues/390#issuecomment-2304201251 + # <- during pip install deepmd-kit: + # error This file was generated by an older version of protoc + # error incompatible with your Protocol Buffer headers + # error regenerate this file with a newer version of protoc. +== 2025-01-23 12:35:47,134 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:35:47,134 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('scikit-build-core', '0.9.3'), ('hatchling', '1.18.0'), ('poetry', '1.5.1'), ('git', '2.41.0', '-nodocs')] (type: ) +== 2025-01-23 12:35:47,134 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('Python', '3.11.3'), ('SciPy-bundle', '2023.07'), ('ml_dtypes', '0.3.2'), ('PyYAML', '6.0'), ('h5py', '3.9.0'), ('TensorFlow', '2.15.1'), ('jax', '0.4.25'), ('mpi4py', '3.1.4')] (type: ) +== 2025-01-23 12:35:47,134 easyconfig.py:689 INFO setting easyconfig parameter description: value A deep learning package for many-body potential energy representation and molecular dynamics. (type: ) +== 2025-01-23 12:35:47,134 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value PythonBundle (type: ) +== 2025-01-23 12:35:47,134 easyconfig.py:689 INFO setting easyconfig parameter exts_list: value [('dargs', '0.4.10', {'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8']}), ('wcmatch', '8.5.2', {'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2']}), ('mendeleev', '0.20.1', {'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da']}), ('array_api_compat', '1.10.0', {'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad']}), ('dpdata', '0.2.21', {'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1']}), ('deepmd_kit', '3.0.1', {'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff']})] (type: ) +== 2025-01-23 12:35:47,135 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://github.com/deepmodeling/deepmd-kit/ (type: ) +== 2025-01-23 12:35:47,135 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value ai (type: ) +== 2025-01-23 12:35:47,135 easyconfig.py:689 INFO setting easyconfig parameter name: value DeePDM-kit (type: ) +== 2025-01-23 12:35:47,135 easyconfig.py:689 INFO setting easyconfig parameter sanity_pip_check: value True (type: ) +== 2025-01-23 12:35:47,135 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'foss', 'version': '2023a'} (type: ) +== 2025-01-23 12:35:47,135 easyconfig.py:689 INFO setting easyconfig parameter use_pip: value True (type: ) +== 2025-01-23 12:35:47,135 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.0.1 (type: ) +== 2025-01-23 12:35:47,135 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:35:47,135 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:35:47,136 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:35:47,136 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:47,137 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:47,137 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:47,138 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:47,139 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-foss-2023a exists... +== 2025-01-23 12:35:47,139 modules.py:649 INFO Module scikit-build-core/0.9.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,139 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-foss-2023a module: False +== 2025-01-23 12:35:47,139 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gompi-2023a exists... +== 2025-01-23 12:35:47,139 modules.py:649 INFO Module scikit-build-core/0.9.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,140 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gompi-2023a module: False +== 2025-01-23 12:35:47,140 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gfbf-2023a exists... +== 2025-01-23 12:35:47,140 modules.py:649 INFO Module scikit-build-core/0.9.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,140 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gfbf-2023a module: False +== 2025-01-23 12:35:47,140 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,140 modules.py:649 INFO Module scikit-build-core/0.9.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,141 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,141 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,141 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,141 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,141 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,141 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'scikit-build-core', 'version': '0.9.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,142 modules.py:628 INFO Checking whether hatchling/1.18.0-foss-2023a exists... +== 2025-01-23 12:35:47,142 modules.py:649 INFO Module hatchling/1.18.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,143 modules.py:656 INFO Result for existence check of hatchling/1.18.0-foss-2023a module: False +== 2025-01-23 12:35:47,143 modules.py:628 INFO Checking whether hatchling/1.18.0-gompi-2023a exists... +== 2025-01-23 12:35:47,143 modules.py:649 INFO Module hatchling/1.18.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,143 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gompi-2023a module: False +== 2025-01-23 12:35:47,143 modules.py:628 INFO Checking whether hatchling/1.18.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,143 modules.py:649 INFO Module hatchling/1.18.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,144 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,144 modules.py:628 INFO Checking whether hatchling/1.18.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,144 modules.py:649 INFO Module hatchling/1.18.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,144 modules.py:656 INFO Result for existence check of hatchling/1.18.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,144 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,144 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,144 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,145 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,145 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'hatchling', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,146 modules.py:628 INFO Checking whether poetry/1.5.1-foss-2023a exists... +== 2025-01-23 12:35:47,146 modules.py:649 INFO Module poetry/1.5.1-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,146 modules.py:656 INFO Result for existence check of poetry/1.5.1-foss-2023a module: False +== 2025-01-23 12:35:47,146 modules.py:628 INFO Checking whether poetry/1.5.1-gompi-2023a exists... +== 2025-01-23 12:35:47,146 modules.py:649 INFO Module poetry/1.5.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,147 modules.py:656 INFO Result for existence check of poetry/1.5.1-gompi-2023a module: False +== 2025-01-23 12:35:47,147 modules.py:628 INFO Checking whether poetry/1.5.1-gfbf-2023a exists... +== 2025-01-23 12:35:47,147 modules.py:649 INFO Module poetry/1.5.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,147 modules.py:656 INFO Result for existence check of poetry/1.5.1-gfbf-2023a module: False +== 2025-01-23 12:35:47,147 modules.py:628 INFO Checking whether poetry/1.5.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,147 modules.py:649 INFO Module poetry/1.5.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,148 modules.py:656 INFO Result for existence check of poetry/1.5.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,148 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,148 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,148 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,148 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,148 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'poetry', 'version': '1.5.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,149 modules.py:628 INFO Checking whether git/2.41.0-foss-2023a-nodocs exists... +== 2025-01-23 12:35:47,150 modules.py:649 INFO Module git/2.41.0-foss-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,150 modules.py:656 INFO Result for existence check of git/2.41.0-foss-2023a-nodocs module: False +== 2025-01-23 12:35:47,150 modules.py:628 INFO Checking whether git/2.41.0-gompi-2023a-nodocs exists... +== 2025-01-23 12:35:47,150 modules.py:649 INFO Module git/2.41.0-gompi-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,150 modules.py:656 INFO Result for existence check of git/2.41.0-gompi-2023a-nodocs module: False +== 2025-01-23 12:35:47,150 modules.py:628 INFO Checking whether git/2.41.0-gfbf-2023a-nodocs exists... +== 2025-01-23 12:35:47,150 modules.py:649 INFO Module git/2.41.0-gfbf-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,151 modules.py:656 INFO Result for existence check of git/2.41.0-gfbf-2023a-nodocs module: False +== 2025-01-23 12:35:47,151 modules.py:628 INFO Checking whether git/2.41.0-GCC-12.3.0-nodocs exists... +== 2025-01-23 12:35:47,151 modules.py:649 INFO Module git/2.41.0-GCC-12.3.0-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,151 modules.py:656 INFO Result for existence check of git/2.41.0-GCC-12.3.0-nodocs module: False +== 2025-01-23 12:35:47,151 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,151 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,151 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,152 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,152 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'git', 'version': '2.41.0', 'versionsuffix': '-nodocs', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,153 modules.py:628 INFO Checking whether Python/3.11.3-foss-2023a exists... +== 2025-01-23 12:35:47,153 modules.py:649 INFO Module Python/3.11.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,153 modules.py:656 INFO Result for existence check of Python/3.11.3-foss-2023a module: False +== 2025-01-23 12:35:47,154 modules.py:628 INFO Checking whether Python/3.11.3-gompi-2023a exists... +== 2025-01-23 12:35:47,154 modules.py:649 INFO Module Python/3.11.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,154 modules.py:656 INFO Result for existence check of Python/3.11.3-gompi-2023a module: False +== 2025-01-23 12:35:47,154 modules.py:628 INFO Checking whether Python/3.11.3-gfbf-2023a exists... +== 2025-01-23 12:35:47,154 modules.py:649 INFO Module Python/3.11.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,154 modules.py:656 INFO Result for existence check of Python/3.11.3-gfbf-2023a module: False +== 2025-01-23 12:35:47,154 modules.py:628 INFO Checking whether Python/3.11.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,154 modules.py:649 INFO Module Python/3.11.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,155 modules.py:656 INFO Result for existence check of Python/3.11.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,155 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,155 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,155 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,155 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,155 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Python', 'version': '3.11.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,156 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-foss-2023a exists... +== 2025-01-23 12:35:47,157 modules.py:649 INFO Module SciPy-bundle/2023.07-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,157 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-foss-2023a module: False +== 2025-01-23 12:35:47,157 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-gompi-2023a exists... +== 2025-01-23 12:35:47,157 modules.py:649 INFO Module SciPy-bundle/2023.07-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,157 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-gompi-2023a module: False +== 2025-01-23 12:35:47,157 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,158 modules.py:649 INFO Module SciPy-bundle/2023.07-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,158 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,158 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,158 modules.py:649 INFO Module SciPy-bundle/2023.07-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,158 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,158 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,158 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,158 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'SciPy-bundle', 'version': '2023.07', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,160 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-foss-2023a exists... +== 2025-01-23 12:35:47,160 modules.py:649 INFO Module ml_dtypes/0.3.2-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,160 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-foss-2023a module: False +== 2025-01-23 12:35:47,160 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-gompi-2023a exists... +== 2025-01-23 12:35:47,160 modules.py:649 INFO Module ml_dtypes/0.3.2-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,161 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-gompi-2023a module: False +== 2025-01-23 12:35:47,161 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,161 modules.py:649 INFO Module ml_dtypes/0.3.2-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,161 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,161 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,161 modules.py:649 INFO Module ml_dtypes/0.3.2-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,161 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,162 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,162 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,162 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'ml_dtypes', 'version': '0.3.2', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,163 modules.py:628 INFO Checking whether PyYAML/6.0-foss-2023a exists... +== 2025-01-23 12:35:47,163 modules.py:649 INFO Module PyYAML/6.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,163 modules.py:656 INFO Result for existence check of PyYAML/6.0-foss-2023a module: False +== 2025-01-23 12:35:47,163 modules.py:628 INFO Checking whether PyYAML/6.0-gompi-2023a exists... +== 2025-01-23 12:35:47,164 modules.py:649 INFO Module PyYAML/6.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,164 modules.py:656 INFO Result for existence check of PyYAML/6.0-gompi-2023a module: False +== 2025-01-23 12:35:47,164 modules.py:628 INFO Checking whether PyYAML/6.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,164 modules.py:649 INFO Module PyYAML/6.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,164 modules.py:656 INFO Result for existence check of PyYAML/6.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,164 modules.py:628 INFO Checking whether PyYAML/6.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,164 modules.py:649 INFO Module PyYAML/6.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,165 modules.py:656 INFO Result for existence check of PyYAML/6.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,165 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,165 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,165 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,165 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,165 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'PyYAML', 'version': '6.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,167 modules.py:628 INFO Checking whether h5py/3.9.0-gompi-2023a exists... +== 2025-01-23 12:35:47,167 modules.py:649 INFO Module h5py/3.9.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,167 modules.py:656 INFO Result for existence check of h5py/3.9.0-gompi-2023a module: False +== 2025-01-23 12:35:47,167 modules.py:628 INFO Checking whether h5py/3.9.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,167 modules.py:649 INFO Module h5py/3.9.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,167 modules.py:656 INFO Result for existence check of h5py/3.9.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,167 modules.py:628 INFO Checking whether h5py/3.9.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,168 modules.py:649 INFO Module h5py/3.9.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,168 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,168 modules.py:628 INFO Checking whether h5py/3.9.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,168 modules.py:649 INFO Module h5py/3.9.0-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,168 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,168 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'h5py', 'version': '3.9.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,170 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gompi-2023a exists... +== 2025-01-23 12:35:47,170 modules.py:649 INFO Module TensorFlow/2.15.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,170 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gompi-2023a module: False +== 2025-01-23 12:35:47,170 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gfbf-2023a exists... +== 2025-01-23 12:35:47,170 modules.py:649 INFO Module TensorFlow/2.15.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,170 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gfbf-2023a module: False +== 2025-01-23 12:35:47,170 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,171 modules.py:649 INFO Module TensorFlow/2.15.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,171 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,171 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,171 modules.py:649 INFO Module TensorFlow/2.15.1-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,171 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,171 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'TensorFlow', 'version': '2.15.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,173 modules.py:628 INFO Checking whether jax/0.4.25-gompi-2023a exists... +== 2025-01-23 12:35:47,173 modules.py:649 INFO Module jax/0.4.25-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,173 modules.py:656 INFO Result for existence check of jax/0.4.25-gompi-2023a module: False +== 2025-01-23 12:35:47,173 modules.py:628 INFO Checking whether jax/0.4.25-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,173 modules.py:649 INFO Module jax/0.4.25-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,173 modules.py:656 INFO Result for existence check of jax/0.4.25-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,174 modules.py:628 INFO Checking whether jax/0.4.25-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,174 modules.py:649 INFO Module jax/0.4.25-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,174 modules.py:656 INFO Result for existence check of jax/0.4.25-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,174 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,174 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,174 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'jax', 'version': '0.4.25', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,175 modules.py:628 INFO Checking whether mpi4py/3.1.4-foss-2023a exists... +== 2025-01-23 12:35:47,176 modules.py:649 INFO Module mpi4py/3.1.4-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,176 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-foss-2023a module: False +== 2025-01-23 12:35:47,176 modules.py:628 INFO Checking whether mpi4py/3.1.4-gfbf-2023a exists... +== 2025-01-23 12:35:47,176 modules.py:649 INFO Module mpi4py/3.1.4-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,176 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-gfbf-2023a module: False +== 2025-01-23 12:35:47,176 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,176 modules.py:649 INFO Module mpi4py/3.1.4-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,177 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,177 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,177 modules.py:649 INFO Module mpi4py/3.1.4-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,177 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,177 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,177 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'mpi4py', 'version': '3.1.4', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gompi', 'version': '2023a'} +== 2025-01-23 12:35:47,179 pythonpackage.py:433 INFO Using default value for expected module name (lowercase software name): 'dpdata' +== 2025-01-23 12:35:47,179 pythonpackage.py:476 INFO Using pip with --no-deps option +== 2025-01-23 12:35:47,179 pythonpackage.py:503 INFO Using '%(python)s -m pip install --prefix=%(prefix)s %(installopts)s %(loc)s' as install command +== 2025-01-23 12:35:47,179 environment.py:93 INFO Environment variable XDG_CACHE_HOME set to /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home (previous value: '/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home') +== 2025-01-23 12:35:47,179 pythonpackage.py:453 INFO Using /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home as pip cache directory +== 2025-01-23 12:35:47,179 environment.py:93 INFO Environment variable PIP_REQUIRE_VIRTUALENV set to false (previous value: 'false') +== 2025-01-23 12:35:47,179 environment.py:93 INFO Environment variable PIP_DISABLE_PIP_VERSION_CHECK set to true (previous value: 'true') +== 2025-01-23 12:35:47,181 easyconfig.py:467 INFO Performing quick parse to check for valid easyconfig file... +== 2025-01-23 12:35:47,181 environment.py:93 INFO Environment variable LMOD_QUIET set to 1 (previous value: '1') +== 2025-01-23 12:35:47,181 environment.py:93 INFO Environment variable LMOD_IGNORE_CACHE set to 1 (previous value: '1') +== 2025-01-23 12:35:47,181 environment.py:93 INFO Environment variable LMOD_REDIRECT set to no (previous value: 'no') +== 2025-01-23 12:35:47,181 environment.py:93 INFO Environment variable LMOD_EXTENDED_DEFAULT set to no (previous value: 'no') +== 2025-01-23 12:35:47,182 environment.py:93 INFO Environment variable LMOD_TERSE_DECORATIONS set to no (previous value: 'no') +== 2025-01-23 12:35:47,182 modules.py:301 INFO Full path for Lmod command is /usr/share/lmod/lmod/libexec/lmod, so using it +== 2025-01-23 12:35:47,182 modules.py:457 INFO Prepended list of module paths with path used by EasyBuild: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/modules/all +== 2025-01-23 12:35:47,182 easyconfig.py:476 INFO Obtained list of valid module classes: ['base', 'ai', 'astro', 'bio', 'cae', 'chem', 'compiler', 'data', 'debugger', 'devel', 'geo', 'ide', 'lang', 'lib', 'math', 'mpi', 'numlib', 'perf', 'quantum', 'phys', 'system', 'toolchain', 'tools', 'vis'] +== 2025-01-23 12:35:47,183 easyconfig.py:1913 INFO Derived full easyblock module path for PythonBundle: easybuild.easyblocks.generic.pythonbundle +== 2025-01-23 12:35:47,183 easyconfig.py:1962 INFO Successfully obtained class 'PythonBundle' for easyblock 'PythonBundle' (software name 'DeePDM-kit') +== 2025-01-23 12:35:47,184 easyconfig.py:708 INFO Parsing easyconfig file None with rawcontent: easyblock = 'PythonBundle' + +name = 'DeePDM-kit' +version = '3.0.1' +# versionsuffix = '-CUDA-%(cudaver)s' + +homepage = 'https://github.com/deepmodeling/deepmd-kit/' +description = "A deep learning package for many-body potential energy representation and molecular dynamics." + +toolchain = {'name': 'foss', 'version': '2023a'} + +# DEPS: + # OK scikit-build-core>=0.5,<0.11,!=0.6.0 + # OK 'numpy>=1.21', + # OK 'scipy', + # OK 'pyyaml', + # ok 'dargs >= 0.4.7', + # OK "h5py>=3.6.0,!=3.11.0; platform_system=='Linux' and platform_machine=='aarch64'", + # ok 'wcmatch', + # OK 'ml_dtypes', + # ok 'mendeleev', + # ok 'array-api-compat', + # ok dpdata + # parallel training deps: + # NO horovod - + # OK mpi4py + +builddependencies = [ + ('scikit-build-core', '0.9.3'), + ('hatchling', '1.18.0'), + ('poetry', '1.5.1'), + ('git', '2.41.0', '-nodocs'), +] +dependencies = [ + # ('CUDA', '12.6.0', '', SYSTEM), + ('Python', '3.11.3'), + ('SciPy-bundle', '2023.07'), + ('ml_dtypes', '0.3.2'), + ('PyYAML', '6.0'), + ('h5py', '3.9.0'), + ('TensorFlow', '2.15.1'), + ('jax', '0.4.25'), + ('mpi4py', '3.1.4'), + # ('protobuf', '24.0'), + # horovod +] + +use_pip = True +sanity_pip_check = True + +# preinstallopts = 'module swap protobuf/3.21.9-GCCcore-12.3.0 && ' + +exts_list = [ + ('dargs', '0.4.10', { + 'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8'], + }), + ('wcmatch', '8.5.2', { + 'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2'], + }), + ('mendeleev', '0.20.1', { + 'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da'], + }), + ('array_api_compat', '1.10.0', { + 'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad'], + }), + ('dpdata', '0.2.21', { + 'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1'], + }), + ('deepmd_kit', version, { + 'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff'], + }), +] + +# sanity_check_paths = { +# 'files': ['bin/%(name)s'], +# 'dirs': ['lib/python%(pyshortver)s/site-packages'], +# } + +# sanity_check_commands = ['%(name)s --help'] + +moduleclass = 'ai' + +# E1: + # same problem as with horovod: https://github.com/vscentrum/vsc-software-stack/issues/390#issuecomment-2304201251 + # <- during pip install deepmd-kit: + # error This file was generated by an older version of protoc + # error incompatible with your Protocol Buffer headers + # error regenerate this file with a newer version of protoc. +== 2025-01-23 12:35:47,184 parser.py:139 INFO Type checking of easyconfig parameter values passed! +== 2025-01-23 12:35:47,184 easyconfig.py:689 INFO setting easyconfig parameter builddependencies: value [('scikit-build-core', '0.9.3'), ('hatchling', '1.18.0'), ('poetry', '1.5.1'), ('git', '2.41.0', '-nodocs')] (type: ) +== 2025-01-23 12:35:47,184 easyconfig.py:689 INFO setting easyconfig parameter dependencies: value [('Python', '3.11.3'), ('SciPy-bundle', '2023.07'), ('ml_dtypes', '0.3.2'), ('PyYAML', '6.0'), ('h5py', '3.9.0'), ('TensorFlow', '2.15.1'), ('jax', '0.4.25'), ('mpi4py', '3.1.4')] (type: ) +== 2025-01-23 12:35:47,184 easyconfig.py:689 INFO setting easyconfig parameter description: value A deep learning package for many-body potential energy representation and molecular dynamics. (type: ) +== 2025-01-23 12:35:47,184 easyconfig.py:689 INFO setting easyconfig parameter easyblock: value PythonBundle (type: ) +== 2025-01-23 12:35:47,184 easyconfig.py:689 INFO setting easyconfig parameter exts_list: value [('dargs', '0.4.10', {'checksums': ['2b39e0a93dcd323d0affb3f54ee2c11a439084d718934df08f38692dfbadddf8']}), ('wcmatch', '8.5.2', {'checksums': ['a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2']}), ('mendeleev', '0.20.1', {'checksums': ['26f27099f0587cab82dd7f84ee31a5c48e994eb478ea2a92756c5fd50764f7da']}), ('array_api_compat', '1.10.0', {'checksums': ['eb98056fa4993e7e98860b7a1ca73c9ae1c77f1ef95366a5ebd5dec8e6d55bad']}), ('dpdata', '0.2.21', {'checksums': ['55dcec61bdc8707fb6b3e57406fb7c07b6ccb7a0ac763a1407cc1c3222bf58b1']}), ('deepmd_kit', '3.0.1', {'checksums': ['10d4443c6fe31a9a4573ed6eda73b6a669dae572cf2bc43f45e9a63aaae02cff']})] (type: ) +== 2025-01-23 12:35:47,185 easyconfig.py:689 INFO setting easyconfig parameter homepage: value https://github.com/deepmodeling/deepmd-kit/ (type: ) +== 2025-01-23 12:35:47,185 easyconfig.py:689 INFO setting easyconfig parameter moduleclass: value ai (type: ) +== 2025-01-23 12:35:47,185 easyconfig.py:689 INFO setting easyconfig parameter name: value DeePDM-kit (type: ) +== 2025-01-23 12:35:47,185 easyconfig.py:689 INFO setting easyconfig parameter sanity_pip_check: value True (type: ) +== 2025-01-23 12:35:47,185 easyconfig.py:689 INFO setting easyconfig parameter toolchain: value {'name': 'foss', 'version': '2023a'} (type: ) +== 2025-01-23 12:35:47,185 easyconfig.py:689 INFO setting easyconfig parameter use_pip: value True (type: ) +== 2025-01-23 12:35:47,185 easyconfig.py:689 INFO setting easyconfig parameter version: value 3.0.1 (type: ) +== 2025-01-23 12:35:47,185 hooks.py:205 INFO Found parse_hook hook +== 2025-01-23 12:35:47,185 hooks.py:239 INFO Running 'parse_hook' hook function (args: [], keyword args: {})... +== 2025-01-23 12:35:47,186 easyconfig.py:750 INFO Parsing dependency specifications... +== 2025-01-23 12:35:47,186 easyconfig.py:1705 INFO Generating template values... +== 2025-01-23 12:35:47,187 mpi.py:122 INFO Using template MPI command 'mpirun -n %(nr_ranks)s %(cmd)s' for MPI family 'OpenMPI' +== 2025-01-23 12:35:47,187 mpi.py:307 INFO Using MPI command template 'mpirun -n %(nr_ranks)s %(cmd)s' (params: {'nr_ranks': 1, 'cmd': 'xxx_command_xxx'}) +== 2025-01-23 12:35:47,188 easyconfig.py:1724 INFO Template values: arch='x86_64', bitbucket_account='deepdm-kit', cuda_cc_cmake='86', cuda_cc_semicolon_sep='8.6', cuda_cc_space_sep='8.6', cuda_cc_space_sep_no_period='86', cuda_compute_capabilities='8.6', cuda_sm_comma_sep='sm_86', cuda_sm_space_sep='sm_86', github_account='deepdm-kit', mpi_cmd_prefix='mpirun -n 1', name='DeePDM-kit', nameletter='D', nameletterlower='d', namelower='deepdm-kit', pymajver='3', pyminver='11', pyshortver='3.11', pyver='3.11.3', rpath_enabled='false', software_commit='', sysroot='', toolchain_name='foss', toolchain_version='2023a', version='3.0.1', version_major='3', version_major_minor='3.0', version_minor='0', versionprefix='', versionsuffix='' +== 2025-01-23 12:35:47,189 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-foss-2023a exists... +== 2025-01-23 12:35:47,189 modules.py:649 INFO Module scikit-build-core/0.9.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,189 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-foss-2023a module: False +== 2025-01-23 12:35:47,189 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gompi-2023a exists... +== 2025-01-23 12:35:47,189 modules.py:649 INFO Module scikit-build-core/0.9.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,190 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gompi-2023a module: False +== 2025-01-23 12:35:47,190 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-gfbf-2023a exists... +== 2025-01-23 12:35:47,190 modules.py:649 INFO Module scikit-build-core/0.9.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,190 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-gfbf-2023a module: False +== 2025-01-23 12:35:47,190 modules.py:628 INFO Checking whether scikit-build-core/0.9.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,190 modules.py:649 INFO Module scikit-build-core/0.9.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,190 modules.py:656 INFO Result for existence check of scikit-build-core/0.9.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,191 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,191 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,191 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,191 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,191 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'scikit-build-core', 'version': '0.9.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,192 modules.py:628 INFO Checking whether hatchling/1.18.0-foss-2023a exists... +== 2025-01-23 12:35:47,192 modules.py:649 INFO Module hatchling/1.18.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,193 modules.py:656 INFO Result for existence check of hatchling/1.18.0-foss-2023a module: False +== 2025-01-23 12:35:47,193 modules.py:628 INFO Checking whether hatchling/1.18.0-gompi-2023a exists... +== 2025-01-23 12:35:47,193 modules.py:649 INFO Module hatchling/1.18.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,193 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gompi-2023a module: False +== 2025-01-23 12:35:47,193 modules.py:628 INFO Checking whether hatchling/1.18.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,193 modules.py:649 INFO Module hatchling/1.18.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,194 modules.py:656 INFO Result for existence check of hatchling/1.18.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,194 modules.py:628 INFO Checking whether hatchling/1.18.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,194 modules.py:649 INFO Module hatchling/1.18.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,194 modules.py:656 INFO Result for existence check of hatchling/1.18.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,194 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,194 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,194 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,194 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,195 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'hatchling', 'version': '1.18.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,196 modules.py:628 INFO Checking whether poetry/1.5.1-foss-2023a exists... +== 2025-01-23 12:35:47,196 modules.py:649 INFO Module poetry/1.5.1-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,196 modules.py:656 INFO Result for existence check of poetry/1.5.1-foss-2023a module: False +== 2025-01-23 12:35:47,196 modules.py:628 INFO Checking whether poetry/1.5.1-gompi-2023a exists... +== 2025-01-23 12:35:47,196 modules.py:649 INFO Module poetry/1.5.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,197 modules.py:656 INFO Result for existence check of poetry/1.5.1-gompi-2023a module: False +== 2025-01-23 12:35:47,197 modules.py:628 INFO Checking whether poetry/1.5.1-gfbf-2023a exists... +== 2025-01-23 12:35:47,197 modules.py:649 INFO Module poetry/1.5.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,197 modules.py:656 INFO Result for existence check of poetry/1.5.1-gfbf-2023a module: False +== 2025-01-23 12:35:47,197 modules.py:628 INFO Checking whether poetry/1.5.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,197 modules.py:649 INFO Module poetry/1.5.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,197 modules.py:656 INFO Result for existence check of poetry/1.5.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,198 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,198 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,198 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,198 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,198 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'poetry', 'version': '1.5.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,199 modules.py:628 INFO Checking whether git/2.41.0-foss-2023a-nodocs exists... +== 2025-01-23 12:35:47,199 modules.py:649 INFO Module git/2.41.0-foss-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,200 modules.py:656 INFO Result for existence check of git/2.41.0-foss-2023a-nodocs module: False +== 2025-01-23 12:35:47,200 modules.py:628 INFO Checking whether git/2.41.0-gompi-2023a-nodocs exists... +== 2025-01-23 12:35:47,200 modules.py:649 INFO Module git/2.41.0-gompi-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,200 modules.py:656 INFO Result for existence check of git/2.41.0-gompi-2023a-nodocs module: False +== 2025-01-23 12:35:47,200 modules.py:628 INFO Checking whether git/2.41.0-gfbf-2023a-nodocs exists... +== 2025-01-23 12:35:47,200 modules.py:649 INFO Module git/2.41.0-gfbf-2023a-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,201 modules.py:656 INFO Result for existence check of git/2.41.0-gfbf-2023a-nodocs module: False +== 2025-01-23 12:35:47,201 modules.py:628 INFO Checking whether git/2.41.0-GCC-12.3.0-nodocs exists... +== 2025-01-23 12:35:47,201 modules.py:649 INFO Module git/2.41.0-GCC-12.3.0-nodocs not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,201 modules.py:656 INFO Result for existence check of git/2.41.0-GCC-12.3.0-nodocs module: False +== 2025-01-23 12:35:47,201 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,201 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,201 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,201 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,202 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'git', 'version': '2.41.0', 'versionsuffix': '-nodocs', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': True, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,203 modules.py:628 INFO Checking whether Python/3.11.3-foss-2023a exists... +== 2025-01-23 12:35:47,203 modules.py:649 INFO Module Python/3.11.3-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,203 modules.py:656 INFO Result for existence check of Python/3.11.3-foss-2023a module: False +== 2025-01-23 12:35:47,203 modules.py:628 INFO Checking whether Python/3.11.3-gompi-2023a exists... +== 2025-01-23 12:35:47,204 modules.py:649 INFO Module Python/3.11.3-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,204 modules.py:656 INFO Result for existence check of Python/3.11.3-gompi-2023a module: False +== 2025-01-23 12:35:47,204 modules.py:628 INFO Checking whether Python/3.11.3-gfbf-2023a exists... +== 2025-01-23 12:35:47,204 modules.py:649 INFO Module Python/3.11.3-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,204 modules.py:656 INFO Result for existence check of Python/3.11.3-gfbf-2023a module: False +== 2025-01-23 12:35:47,204 modules.py:628 INFO Checking whether Python/3.11.3-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,204 modules.py:649 INFO Module Python/3.11.3-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,205 modules.py:656 INFO Result for existence check of Python/3.11.3-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,205 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,205 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,205 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,205 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,205 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'Python', 'version': '3.11.3', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,206 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-foss-2023a exists... +== 2025-01-23 12:35:47,207 modules.py:649 INFO Module SciPy-bundle/2023.07-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,207 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-foss-2023a module: False +== 2025-01-23 12:35:47,207 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-gompi-2023a exists... +== 2025-01-23 12:35:47,207 modules.py:649 INFO Module SciPy-bundle/2023.07-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,207 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-gompi-2023a module: False +== 2025-01-23 12:35:47,207 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,207 modules.py:649 INFO Module SciPy-bundle/2023.07-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,208 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,208 modules.py:628 INFO Checking whether SciPy-bundle/2023.07-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,208 modules.py:649 INFO Module SciPy-bundle/2023.07-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,208 modules.py:656 INFO Result for existence check of SciPy-bundle/2023.07-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,208 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,208 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,208 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'SciPy-bundle', 'version': '2023.07', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,210 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-foss-2023a exists... +== 2025-01-23 12:35:47,210 modules.py:649 INFO Module ml_dtypes/0.3.2-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,210 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-foss-2023a module: False +== 2025-01-23 12:35:47,210 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-gompi-2023a exists... +== 2025-01-23 12:35:47,210 modules.py:649 INFO Module ml_dtypes/0.3.2-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,210 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-gompi-2023a module: False +== 2025-01-23 12:35:47,211 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,211 modules.py:649 INFO Module ml_dtypes/0.3.2-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,211 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,211 modules.py:628 INFO Checking whether ml_dtypes/0.3.2-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,211 modules.py:649 INFO Module ml_dtypes/0.3.2-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,211 modules.py:656 INFO Result for existence check of ml_dtypes/0.3.2-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,211 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,212 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,212 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'ml_dtypes', 'version': '0.3.2', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,213 modules.py:628 INFO Checking whether PyYAML/6.0-foss-2023a exists... +== 2025-01-23 12:35:47,213 modules.py:649 INFO Module PyYAML/6.0-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,213 modules.py:656 INFO Result for existence check of PyYAML/6.0-foss-2023a module: False +== 2025-01-23 12:35:47,213 modules.py:628 INFO Checking whether PyYAML/6.0-gompi-2023a exists... +== 2025-01-23 12:35:47,213 modules.py:649 INFO Module PyYAML/6.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,214 modules.py:656 INFO Result for existence check of PyYAML/6.0-gompi-2023a module: False +== 2025-01-23 12:35:47,214 modules.py:628 INFO Checking whether PyYAML/6.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,214 modules.py:649 INFO Module PyYAML/6.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,214 modules.py:656 INFO Result for existence check of PyYAML/6.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,214 modules.py:628 INFO Checking whether PyYAML/6.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,214 modules.py:649 INFO Module PyYAML/6.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,215 modules.py:656 INFO Result for existence check of PyYAML/6.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,215 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,215 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,215 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,215 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,215 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'PyYAML', 'version': '6.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'GCCcore', 'version': '12.3.0'} +== 2025-01-23 12:35:47,216 modules.py:628 INFO Checking whether h5py/3.9.0-gompi-2023a exists... +== 2025-01-23 12:35:47,217 modules.py:649 INFO Module h5py/3.9.0-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,217 modules.py:656 INFO Result for existence check of h5py/3.9.0-gompi-2023a module: False +== 2025-01-23 12:35:47,217 modules.py:628 INFO Checking whether h5py/3.9.0-gfbf-2023a exists... +== 2025-01-23 12:35:47,217 modules.py:649 INFO Module h5py/3.9.0-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,217 modules.py:656 INFO Result for existence check of h5py/3.9.0-gfbf-2023a module: False +== 2025-01-23 12:35:47,217 modules.py:628 INFO Checking whether h5py/3.9.0-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,217 modules.py:649 INFO Module h5py/3.9.0-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,218 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,218 modules.py:628 INFO Checking whether h5py/3.9.0-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,218 modules.py:649 INFO Module h5py/3.9.0-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,218 modules.py:656 INFO Result for existence check of h5py/3.9.0-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,218 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'h5py', 'version': '3.9.0', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,219 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gompi-2023a exists... +== 2025-01-23 12:35:47,220 modules.py:649 INFO Module TensorFlow/2.15.1-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,220 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gompi-2023a module: False +== 2025-01-23 12:35:47,220 modules.py:628 INFO Checking whether TensorFlow/2.15.1-gfbf-2023a exists... +== 2025-01-23 12:35:47,220 modules.py:649 INFO Module TensorFlow/2.15.1-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,220 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-gfbf-2023a module: False +== 2025-01-23 12:35:47,220 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,220 modules.py:649 INFO Module TensorFlow/2.15.1-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,221 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,221 modules.py:628 INFO Checking whether TensorFlow/2.15.1-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,221 modules.py:649 INFO Module TensorFlow/2.15.1-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,221 modules.py:656 INFO Result for existence check of TensorFlow/2.15.1-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,221 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'TensorFlow', 'version': '2.15.1', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'foss', 'version': '2023a'} +== 2025-01-23 12:35:47,223 modules.py:628 INFO Checking whether jax/0.4.25-gompi-2023a exists... +== 2025-01-23 12:35:47,223 modules.py:649 INFO Module jax/0.4.25-gompi-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,223 modules.py:656 INFO Result for existence check of jax/0.4.25-gompi-2023a module: False +== 2025-01-23 12:35:47,223 modules.py:628 INFO Checking whether jax/0.4.25-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,223 modules.py:649 INFO Module jax/0.4.25-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,223 modules.py:656 INFO Result for existence check of jax/0.4.25-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,224 modules.py:628 INFO Checking whether jax/0.4.25-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,224 modules.py:649 INFO Module jax/0.4.25-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,224 modules.py:656 INFO Result for existence check of jax/0.4.25-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,224 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,224 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,224 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'jax', 'version': '0.4.25', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gfbf', 'version': '2023a'} +== 2025-01-23 12:35:47,225 modules.py:628 INFO Checking whether mpi4py/3.1.4-foss-2023a exists... +== 2025-01-23 12:35:47,225 modules.py:649 INFO Module mpi4py/3.1.4-foss-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,226 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-foss-2023a module: False +== 2025-01-23 12:35:47,226 modules.py:628 INFO Checking whether mpi4py/3.1.4-gfbf-2023a exists... +== 2025-01-23 12:35:47,226 modules.py:649 INFO Module mpi4py/3.1.4-gfbf-2023a not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,226 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-gfbf-2023a module: False +== 2025-01-23 12:35:47,226 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCC-12.3.0 exists... +== 2025-01-23 12:35:47,226 modules.py:649 INFO Module mpi4py/3.1.4-GCC-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,227 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCC-12.3.0 module: False +== 2025-01-23 12:35:47,227 modules.py:628 INFO Checking whether mpi4py/3.1.4-GCCcore-12.3.0 exists... +== 2025-01-23 12:35:47,227 modules.py:649 INFO Module mpi4py/3.1.4-GCCcore-12.3.0 not found via module avail/show, checking whether it is a wrapper +== 2025-01-23 12:35:47,227 modules.py:656 INFO Result for existence check of mpi4py/3.1.4-GCCcore-12.3.0 module: False +== 2025-01-23 12:35:47,227 easyconfig.py:2202 INFO Found loaded index for /user/gent/470/vsc47063/easybuild/easybuild-easyconfigs/easybuild/easyconfigs +== 2025-01-23 12:35:47,227 easyconfig.py:2378 INFO Minimally resolving dependency {'full_mod_name': None, 'short_mod_name': None, 'name': 'mpi4py', 'version': '3.1.4', 'versionsuffix': '', 'toolchain': {'name': 'foss', 'version': '2023a'}, 'toolchain_inherited': True, 'system': False, 'hidden': False, 'build_only': False, 'external_module': False, 'external_module_metadata': {}} using toolchain {'name': 'gompi', 'version': '2023a'} +== 2025-01-23 12:35:47,229 pythonpackage.py:433 INFO Using default value for expected module name (lowercase software name): 'deepmd_kit' +== 2025-01-23 12:35:47,229 pythonpackage.py:476 INFO Using pip with --no-deps option +== 2025-01-23 12:35:47,229 pythonpackage.py:503 INFO Using '%(python)s -m pip install --prefix=%(prefix)s %(installopts)s %(loc)s' as install command +== 2025-01-23 12:35:47,229 environment.py:93 INFO Environment variable XDG_CACHE_HOME set to /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home (previous value: '/tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home') +== 2025-01-23 12:35:47,229 pythonpackage.py:453 INFO Using /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home as pip cache directory +== 2025-01-23 12:35:47,229 environment.py:93 INFO Environment variable PIP_REQUIRE_VIRTUALENV set to false (previous value: 'false') +== 2025-01-23 12:35:47,229 environment.py:93 INFO Environment variable PIP_DISABLE_PIP_VERSION_CHECK set to true (previous value: 'true') +== 2025-01-23 12:35:47,586 easyblock.py:1914 INFO Installing extensions sequentially... +== 2025-01-23 12:35:47,586 easyblock.py:1920 INFO Starting extension dargs +== 2025-01-23 12:35:47,586 build_log.py:267 INFO installing extension dargs 0.4.10 (1/6)... +== 2025-01-23 12:35:47,948 modules.py:628 INFO Checking whether foss/2023a exists... +== 2025-01-23 12:35:47,949 modules.py:636 INFO Module foss/2023a not found in list of available modules, checking via 'module show'... +== 2025-01-23 12:35:51,477 modules.py:656 INFO Result for existence check of foss/2023a module: True +== 2025-01-23 12:35:51,478 toolchain.py:766 INFO List of toolchain dependency modules and toolchain definition match! +== 2025-01-23 12:35:51,482 compiler.py:363 INFO _set_optimal_architecture: using march=native as optarch for x86_64/Intel. +== 2025-01-23 12:35:51,495 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/include was not found +== 2025-01-23 12:35:51,503 environment.py:93 INFO Environment variable BLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:51,503 environment.py:93 INFO Environment variable EBVARBLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:51,503 environment.py:93 INFO Environment variable BLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable BLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable BLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable BLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable BLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable EBVARBLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable BLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,504 environment.py:93 INFO Environment variable EBVARBLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable BLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable EBVARBLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable BLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable EBVARBLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable BLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable EBVARBLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable CC set to gcc (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable EBVARCC set to gcc (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable CFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable EBVARCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable CPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable EBVARCPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable CXX set to g++ (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable EBVARCXX set to g++ (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable CXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,505 environment.py:93 INFO Environment variable EBVARCXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable F77 set to gfortran (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable EBVARF77 set to gfortran (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable F90 set to gfortran (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable EBVARF90 set to gfortran (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable F90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable EBVARF90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable FC set to gfortran (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable EBVARFC set to gfortran (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable FCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable EBVARFCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable FFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable EBVARFFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable FFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable EBVARFFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable FFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,506 environment.py:93 INFO Environment variable EBVARFFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS set to libfftw3.so (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS set to libfftw3.so (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS set to libfftw3.a (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS set to libfftw3.a (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable FFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable EBVARFFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable FFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable EBVARFFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable FFT_SHARED_LIBS set to libfftw3.so (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS set to libfftw3.so (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable FFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,507 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable FFT_STATIC_LIBS set to libfftw3.a (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS set to libfftw3.a (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable FFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable FLIBS set to -lgfortran (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable EBVARFLIBS set to -lgfortran (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable EBVARLAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable EBVARLAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable EBVARLAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable EBVARLAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:51,508 environment.py:93 INFO Environment variable EBVARLAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable EBVARLAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable LDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable EBVARLDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable LIBBLAS set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable EBVARLIBBLAS set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable LIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable EBVARLIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable LIBFFT set to -lfftw3 (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable EBVARLIBFFT set to -lfftw3 (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable LIBFFT_MT set to -lfftw3 -lpthread (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable EBVARLIBFFT_MT set to -lfftw3 -lpthread (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable LIBLAPACK set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable EBVARLIBLAPACK set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:51,509 environment.py:93 INFO Environment variable LIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable LIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable LIBLAPACK_ONLY set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable EBVARLIBLAPACK_ONLY set to -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable LIBS set to -lm -lpthread (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable EBVARLIBS set to -lm -lpthread (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable LIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable LIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable LIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable LIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previously undefined) +== 2025-01-23 12:35:51,510 environment.py:93 INFO Environment variable MPICC set to mpicc (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable EBVARMPICC set to mpicc (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable MPICXX set to mpicxx (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable EBVARMPICXX set to mpicxx (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable MPIF77 set to mpifort (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable EBVARMPIF77 set to mpifort (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable MPIF90 set to mpifort (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable EBVARMPIF90 set to mpifort (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable MPIFC set to mpifort (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable EBVARMPIFC set to mpifort (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable MPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable EBVARMPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable MPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable EBVARMPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable MPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable EBVARMPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previously undefined) +== 2025-01-23 12:35:51,511 environment.py:93 INFO Environment variable MPI_LIB_STATIC set to (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable EBVARMPI_LIB_STATIC set to (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable OMPI_CC set to gcc (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable EBVAROMPI_CC set to gcc (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable OMPI_CXX set to g++ (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable EBVAROMPI_CXX set to g++ (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable OMPI_F77 set to gfortran (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable EBVAROMPI_F77 set to gfortran (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable OMPI_F90 set to gfortran (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable EBVAROMPI_F90 set to gfortran (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable OMPI_FC set to gfortran (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable EBVAROMPI_FC set to gfortran (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable OPTFLAGS set to -O2 -ftree-vectorize -march=native (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable EBVAROPTFLAGS set to -O2 -ftree-vectorize -march=native (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable PRECFLAGS set to -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable EBVARPRECFLAGS set to -fno-math-errno (previously undefined) +== 2025-01-23 12:35:51,512 environment.py:93 INFO Environment variable SCALAPACK_INC_DIR set to (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable EBVARSCALAPACK_INC_DIR set to (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable SCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable EBVARSCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable SCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable SCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable SCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable EBVARSCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable SCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:51,513 environment.py:93 INFO Environment variable EBVARSCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previously undefined) +== 2025-01-23 12:35:51,543 filetools.py:528 INFO Command python found at /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:35:51,544 pythonpackage.py:562 INFO Python command being used: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:35:51,544 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:51,544 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:51,727 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:35:51,727 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:35:54,163 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:54,163 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:54,203 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:35:54,203 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:35:54,380 filetools.py:1924 INFO Creating directory /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/dargs (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:35:54,382 run.py:251 INFO Using /bin/bash as shell for running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dargs-0.4.10.tar.gz +== 2025-01-23 12:35:54,382 run.py:260 INFO running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dargs-0.4.10.tar.gz +== 2025-01-23 12:35:54,475 build_log.py:267 INFO configuring... +== 2025-01-23 12:35:54,475 environment.py:93 INFO Environment variable PYTHONNOUSERSITE set to 1 (previous value: '1') +== 2025-01-23 12:35:54,475 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:54,475 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:54,511 pythonpackage.py:782 INFO Checking of $LDSHARED auto-enabled for sufficiently recent Python version 3.11.3 +== 2025-01-23 12:35:54,511 pythonpackage.py:794 INFO Python's value for $LDSHARED ('gcc -pthread -shared -Wl,-z,relro -Wl,-z,now -g -Wl,-z,relro -Wl,-z,now -g') uses current $CC value ('gcc'), not touching it +== 2025-01-23 12:35:54,512 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:35:54,512 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:35:54,560 build_log.py:267 INFO building... +== 2025-01-23 12:35:54,560 build_log.py:267 INFO testing... +== 2025-01-23 12:35:54,560 build_log.py:267 INFO installing... +== 2025-01-23 12:35:54,560 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:54,560 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:35:54,596 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:35:54,596 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:35:54,633 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:35:54,633 filetools.py:1924 INFO Creating directory /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:35:54,634 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:35:54,634 environment.py:93 INFO Environment variable PATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:35:54,634 pythonpackage.py:252 INFO Determining pip version... +== 2025-01-23 12:35:54,634 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:35:54,634 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:35:58,725 pythonpackage.py:260 INFO Found pip version: 23.1.2 +== 2025-01-23 12:35:58,725 pythonpackage.py:652 INFO Found pip version 23.1.2, OK +== 2025-01-23 12:35:58,726 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:35:58,726 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:09,459 run.py:700 INFO cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exit code 0 and output: +Processing /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/dargs/dargs-0.4.10 + Preparing metadata (pyproject.toml): started + Preparing metadata (pyproject.toml): finished with status 'done' +Building wheels for collected packages: dargs + Building wheel for dargs (pyproject.toml): started + Building wheel for dargs (pyproject.toml): finished with status 'done' + Created wheel for dargs: filename=dargs-0.4.10-py3-none-any.whl size=27014 sha256=4cf63f7488c4677ac03a03fe515684b3325fd8061e01a5775539ecc0807bfac0 + Stored in directory: /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home/pip/wheels/71/77/0a/2fadff0f04f6e8d42f93233619fc720c6235fcb8669b68e147 +Successfully built dargs +Installing collected packages: dargs +Successfully installed dargs-0.4.10 + +== 2025-01-23 12:36:09,460 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:09,460 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:09,501 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:09,502 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:09,539 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:09,539 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:09,539 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:09,576 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:09,576 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:09,612 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:09,612 easyblock.py:2960 INFO Path to 'env' command to use in patched shebang lines: /usr/bin/env +== 2025-01-23 12:36:09,613 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:09,613 environment.py:93 INFO Environment variable PATH set to /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:09,613 build_log.py:267 INFO ... (took 22 secs) +== 2025-01-23 12:36:09,613 easyblock.py:1920 INFO Starting extension wcmatch +== 2025-01-23 12:36:09,613 build_log.py:267 INFO installing extension wcmatch 8.5.2 (2/6)... +== 2025-01-23 12:36:09,973 modules.py:628 INFO Checking whether foss/2023a exists... +== 2025-01-23 12:36:09,974 modules.py:636 INFO Module foss/2023a not found in list of available modules, checking via 'module show'... +== 2025-01-23 12:36:09,974 modules.py:656 INFO Result for existence check of foss/2023a module: True +== 2025-01-23 12:36:09,977 toolchain.py:766 INFO List of toolchain dependency modules and toolchain definition match! +== 2025-01-23 12:36:09,979 compiler.py:363 INFO _set_optimal_architecture: using march=native as optarch for x86_64/Intel. +== 2025-01-23 12:36:09,990 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/include was not found +== 2025-01-23 12:36:09,995 environment.py:93 INFO Environment variable BLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable EBVARBLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable BLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable BLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable BLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable BLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:09,996 environment.py:93 INFO Environment variable BLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable EBVARBLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable BLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable EBVARBLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable BLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable EBVARBLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable BLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable EBVARBLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable BLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable EBVARBLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable EBVARCC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable CFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable EBVARCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable CPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable EBVARCPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:09,997 environment.py:93 INFO Environment variable CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable EBVARCXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable CXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable EBVARCXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable EBVARF77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable EBVARF90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable F90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable EBVARF90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable EBVARFC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable FCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable EBVARFCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable FFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable EBVARFFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:09,998 environment.py:93 INFO Environment variable FFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable EBVARFFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable FFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable EBVARFFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable FFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable EBVARFFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable FFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable EBVARFFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:09,999 environment.py:93 INFO Environment variable FFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable FFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable FFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable FFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable FLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable EBVARFLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable EBVARLAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable EBVARLAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:10,000 environment.py:93 INFO Environment variable EBVARLAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable EBVARLAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable EBVARLAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable EBVARLAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable LDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable EBVARLDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable LIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable EBVARLIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable LIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable EBVARLIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable LIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable EBVARLIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable LIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:10,001 environment.py:93 INFO Environment variable EBVARLIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable LIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable EBVARLIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable LIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable LIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable LIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable EBVARLIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable LIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable EBVARLIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable LIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable LIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:10,002 environment.py:93 INFO Environment variable LIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable LIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable MPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable EBVARMPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable MPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable EBVARMPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable MPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable EBVARMPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable MPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable EBVARMPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable MPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable EBVARMPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable MPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable EBVARMPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:10,003 environment.py:93 INFO Environment variable MPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable EBVARMPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable MPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable EBVARMPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable MPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable EBVARMPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable OMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable EBVAROMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable OMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable EBVAROMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable OMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable EBVAROMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable OMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable EBVAROMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable OMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable EBVAROMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:10,004 environment.py:93 INFO Environment variable OPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable EBVAROPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable PRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable EBVARPRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable SCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable EBVARSCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable SCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable EBVARSCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable SCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable SCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable SCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable EBVARSCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable SCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:10,005 environment.py:93 INFO Environment variable EBVARSCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:10,006 filetools.py:528 INFO Command python found at /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:10,006 pythonpackage.py:562 INFO Python command being used: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:10,006 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:10,006 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:10,044 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:10,044 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:10,214 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:10,214 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:10,251 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:10,251 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:10,426 filetools.py:1924 INFO Creating directory /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/wcmatch (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:36:10,427 run.py:251 INFO Using /bin/bash as shell for running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/wcmatch-8.5.2.tar.gz +== 2025-01-23 12:36:10,427 run.py:260 INFO running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/wcmatch-8.5.2.tar.gz +== 2025-01-23 12:36:10,474 build_log.py:267 INFO configuring... +== 2025-01-23 12:36:10,474 environment.py:93 INFO Environment variable PYTHONNOUSERSITE set to 1 (previous value: '1') +== 2025-01-23 12:36:10,475 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:10,475 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:10,510 pythonpackage.py:782 INFO Checking of $LDSHARED auto-enabled for sufficiently recent Python version 3.11.3 +== 2025-01-23 12:36:10,511 pythonpackage.py:794 INFO Python's value for $LDSHARED ('gcc -pthread -shared -Wl,-z,relro -Wl,-z,now -g -Wl,-z,relro -Wl,-z,now -g') uses current $CC value ('gcc'), not touching it +== 2025-01-23 12:36:10,511 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:10,511 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:10,559 build_log.py:267 INFO building... +== 2025-01-23 12:36:10,559 build_log.py:267 INFO testing... +== 2025-01-23 12:36:10,559 build_log.py:267 INFO installing... +== 2025-01-23 12:36:10,559 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:10,559 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:10,594 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:10,595 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:10,631 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:10,632 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:10,632 environment.py:93 INFO Environment variable PATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:10,632 pythonpackage.py:252 INFO Determining pip version... +== 2025-01-23 12:36:10,632 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:10,632 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:12,844 pythonpackage.py:260 INFO Found pip version: 23.1.2 +== 2025-01-23 12:36:12,845 pythonpackage.py:652 INFO Found pip version 23.1.2, OK +== 2025-01-23 12:36:12,845 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:12,845 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:16,516 run.py:700 INFO cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exit code 0 and output: +Processing /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/wcmatch/wcmatch-8.5.2 + Preparing metadata (pyproject.toml): started + Preparing metadata (pyproject.toml): finished with status 'done' +Building wheels for collected packages: wcmatch + Building wheel for wcmatch (pyproject.toml): started + Building wheel for wcmatch (pyproject.toml): finished with status 'done' + Created wheel for wcmatch: filename=wcmatch-8.5.2-py3-none-any.whl size=39399 sha256=1b47fb918c09161a96d2f32714c8baa259a4825bbb817d60123da7c31a10e286 + Stored in directory: /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home/pip/wheels/f6/7f/29/736cd5690ec72b6b8b2d7f35610fbf7b1456c982e059729bd9 +Successfully built wcmatch +Installing collected packages: wcmatch +Successfully installed wcmatch-8.5.2 + +== 2025-01-23 12:36:16,516 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:16,516 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:16,556 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:16,556 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:16,593 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:16,594 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:16,594 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:16,630 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:16,630 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:16,667 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:16,667 easyblock.py:2960 INFO Path to 'env' command to use in patched shebang lines: /usr/bin/env +== 2025-01-23 12:36:16,667 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:16,667 environment.py:93 INFO Environment variable PATH set to /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:16,668 build_log.py:267 INFO ... (took 7 secs) +== 2025-01-23 12:36:16,668 easyblock.py:1920 INFO Starting extension mendeleev +== 2025-01-23 12:36:16,668 build_log.py:267 INFO installing extension mendeleev 0.20.1 (3/6)... +== 2025-01-23 12:36:17,012 modules.py:628 INFO Checking whether foss/2023a exists... +== 2025-01-23 12:36:17,012 modules.py:636 INFO Module foss/2023a not found in list of available modules, checking via 'module show'... +== 2025-01-23 12:36:17,012 modules.py:656 INFO Result for existence check of foss/2023a module: True +== 2025-01-23 12:36:17,013 toolchain.py:766 INFO List of toolchain dependency modules and toolchain definition match! +== 2025-01-23 12:36:17,014 compiler.py:363 INFO _set_optimal_architecture: using march=native as optarch for x86_64/Intel. +== 2025-01-23 12:36:17,023 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/include was not found +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable BLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable EBVARBLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable BLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable BLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable BLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:17,028 environment.py:93 INFO Environment variable BLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable BLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable EBVARBLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable BLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable EBVARBLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable BLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable EBVARBLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable BLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable EBVARBLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable BLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable EBVARBLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable EBVARCC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable CFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable EBVARCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,029 environment.py:93 INFO Environment variable CPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable EBVARCPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable EBVARCXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable CXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable EBVARCXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable EBVARF77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable EBVARF90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable F90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable EBVARF90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable EBVARFC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable FCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable EBVARFCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,030 environment.py:93 INFO Environment variable FFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable EBVARFFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable FFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable EBVARFFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable FFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable EBVARFFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable FFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable EBVARFFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:17,031 environment.py:93 INFO Environment variable FFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable EBVARFFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable FFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable FFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable FFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable FFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable FLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable EBVARFLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable EBVARLAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable EBVARLAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:17,032 environment.py:93 INFO Environment variable LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable EBVARLAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable EBVARLAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable EBVARLAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable EBVARLAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable LDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable EBVARLDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable LIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable EBVARLIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable LIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable EBVARLIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable LIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable EBVARLIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:17,033 environment.py:93 INFO Environment variable LIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable EBVARLIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable LIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable EBVARLIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable LIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable LIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable LIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable EBVARLIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable LIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable EBVARLIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable LIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable LIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:17,034 environment.py:93 INFO Environment variable LIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable LIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable MPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable EBVARMPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable MPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable EBVARMPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable MPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable EBVARMPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable MPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable EBVARMPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable MPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable EBVARMPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable MPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable EBVARMPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:17,035 environment.py:93 INFO Environment variable MPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable EBVARMPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable MPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable EBVARMPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable MPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable EBVARMPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable OMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable EBVAROMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable OMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable EBVAROMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable OMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable EBVAROMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable OMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable EBVAROMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable OMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable EBVAROMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:17,036 environment.py:93 INFO Environment variable OPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable EBVAROPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable PRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable EBVARPRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable SCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable EBVARSCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable SCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable EBVARSCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable SCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable SCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable SCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable EBVARSCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable SCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:17,037 environment.py:93 INFO Environment variable EBVARSCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:17,038 filetools.py:528 INFO Command python found at /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:17,038 pythonpackage.py:562 INFO Python command being used: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:17,038 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:17,038 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:17,075 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:17,075 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:17,341 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:17,341 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:17,380 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:17,380 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:17,549 filetools.py:1924 INFO Creating directory /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/mendeleev (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:36:17,550 run.py:251 INFO Using /bin/bash as shell for running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/mendeleev-0.20.1.tar.gz +== 2025-01-23 12:36:17,550 run.py:260 INFO running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/mendeleev-0.20.1.tar.gz +== 2025-01-23 12:36:17,643 build_log.py:267 INFO configuring... +== 2025-01-23 12:36:17,643 environment.py:93 INFO Environment variable PYTHONNOUSERSITE set to 1 (previous value: '1') +== 2025-01-23 12:36:17,643 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:17,643 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:17,679 pythonpackage.py:782 INFO Checking of $LDSHARED auto-enabled for sufficiently recent Python version 3.11.3 +== 2025-01-23 12:36:17,680 pythonpackage.py:794 INFO Python's value for $LDSHARED ('gcc -pthread -shared -Wl,-z,relro -Wl,-z,now -g -Wl,-z,relro -Wl,-z,now -g') uses current $CC value ('gcc'), not touching it +== 2025-01-23 12:36:17,680 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:17,680 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:17,728 build_log.py:267 INFO building... +== 2025-01-23 12:36:17,728 build_log.py:267 INFO testing... +== 2025-01-23 12:36:17,728 build_log.py:267 INFO installing... +== 2025-01-23 12:36:17,729 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:17,729 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:17,764 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:17,764 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:17,801 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:17,802 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:17,802 environment.py:93 INFO Environment variable PATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:17,802 pythonpackage.py:252 INFO Determining pip version... +== 2025-01-23 12:36:17,802 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:17,802 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:18,167 pythonpackage.py:260 INFO Found pip version: 23.1.2 +== 2025-01-23 12:36:18,167 pythonpackage.py:652 INFO Found pip version 23.1.2, OK +== 2025-01-23 12:36:18,168 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:18,168 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:21,658 run.py:700 INFO cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exit code 0 and output: +Processing /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/mendeleev/mendeleev-0.20.1 + Preparing metadata (pyproject.toml): started + Preparing metadata (pyproject.toml): finished with status 'done' +Building wheels for collected packages: mendeleev + Building wheel for mendeleev (pyproject.toml): started + Building wheel for mendeleev (pyproject.toml): finished with status 'done' + Created wheel for mendeleev: filename=mendeleev-0.20.1-py3-none-any.whl size=1374784 sha256=53ad108d49913ae508b0fd52b9d04976b7db0d832a733d2809b1bf2a51e3eb85 + Stored in directory: /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home/pip/wheels/cb/8b/64/694ab461f3bc198a487033054a3247a685ccdaaf0c7b56cbb5 +Successfully built mendeleev +Installing collected packages: mendeleev +Successfully installed mendeleev-0.20.1 + +== 2025-01-23 12:36:21,659 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:21,659 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:21,698 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:21,698 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:21,736 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:21,736 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:21,736 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:21,772 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:21,772 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:21,809 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:21,809 easyblock.py:2960 INFO Path to 'env' command to use in patched shebang lines: /usr/bin/env +== 2025-01-23 12:36:21,809 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:21,809 environment.py:93 INFO Environment variable PATH set to /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:21,809 build_log.py:267 INFO ... (took 5 secs) +== 2025-01-23 12:36:21,810 easyblock.py:1920 INFO Starting extension array_api_compat +== 2025-01-23 12:36:21,810 build_log.py:267 INFO installing extension array_api_compat 1.10.0 (4/6)... +== 2025-01-23 12:36:22,169 modules.py:628 INFO Checking whether foss/2023a exists... +== 2025-01-23 12:36:22,169 modules.py:636 INFO Module foss/2023a not found in list of available modules, checking via 'module show'... +== 2025-01-23 12:36:22,169 modules.py:656 INFO Result for existence check of foss/2023a module: True +== 2025-01-23 12:36:22,170 toolchain.py:766 INFO List of toolchain dependency modules and toolchain definition match! +== 2025-01-23 12:36:22,172 compiler.py:363 INFO _set_optimal_architecture: using march=native as optarch for x86_64/Intel. +== 2025-01-23 12:36:22,182 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/include was not found +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable BLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable EBVARBLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable BLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable BLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable BLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable BLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:22,187 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable BLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable EBVARBLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable BLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable EBVARBLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable BLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable EBVARBLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable BLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable EBVARBLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable BLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable EBVARBLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable EBVARCC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable CFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable EBVARCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable CPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:22,188 environment.py:93 INFO Environment variable EBVARCPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable EBVARCXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable CXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable EBVARCXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable EBVARF77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable EBVARF90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable F90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable EBVARF90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable EBVARFC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable FCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable EBVARFCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable FFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,189 environment.py:93 INFO Environment variable EBVARFFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable FFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable EBVARFFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable FFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable EBVARFFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable FFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable EBVARFFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable FFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,190 environment.py:93 INFO Environment variable EBVARFFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable FFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable FFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable FFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable FFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable FLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable EBVARFLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable EBVARLAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable EBVARLAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:22,191 environment.py:93 INFO Environment variable EBVARLAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable EBVARLAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable EBVARLAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable EBVARLAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable LDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable EBVARLDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable LIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable EBVARLIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable LIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable EBVARLIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable LIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable EBVARLIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable LIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:22,192 environment.py:93 INFO Environment variable EBVARLIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable LIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable EBVARLIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable LIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable LIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable LIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable EBVARLIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable LIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable EBVARLIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable LIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable LIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable LIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:22,193 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable LIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable MPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable EBVARMPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable MPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable EBVARMPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable MPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable EBVARMPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable MPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable EBVARMPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable MPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable EBVARMPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable MPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable EBVARMPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable MPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:22,194 environment.py:93 INFO Environment variable EBVARMPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable MPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable EBVARMPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable MPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable EBVARMPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable OMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable EBVAROMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable OMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable EBVAROMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable OMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable EBVAROMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable OMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable EBVAROMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable OMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable EBVAROMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable OPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:22,195 environment.py:93 INFO Environment variable EBVAROPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable PRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable EBVARPRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable SCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable EBVARSCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable SCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable EBVARSCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable SCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable SCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable SCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable EBVARSCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable SCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:22,196 environment.py:93 INFO Environment variable EBVARSCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:22,197 filetools.py:528 INFO Command python found at /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:22,198 pythonpackage.py:562 INFO Python command being used: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:22,198 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:22,198 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:22,235 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:22,236 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:22,412 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:22,412 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:22,451 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:22,451 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:22,626 filetools.py:1924 INFO Creating directory /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/array_api_compat (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:36:22,627 run.py:251 INFO Using /bin/bash as shell for running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/array_api_compat-1.10.0.tar.gz +== 2025-01-23 12:36:22,627 run.py:260 INFO running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/array_api_compat-1.10.0.tar.gz +== 2025-01-23 12:36:22,723 build_log.py:267 INFO configuring... +== 2025-01-23 12:36:22,723 environment.py:93 INFO Environment variable PYTHONNOUSERSITE set to 1 (previous value: '1') +== 2025-01-23 12:36:22,723 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:22,723 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:22,760 pythonpackage.py:782 INFO Checking of $LDSHARED auto-enabled for sufficiently recent Python version 3.11.3 +== 2025-01-23 12:36:22,760 pythonpackage.py:794 INFO Python's value for $LDSHARED ('gcc -pthread -shared -Wl,-z,relro -Wl,-z,now -g -Wl,-z,relro -Wl,-z,now -g') uses current $CC value ('gcc'), not touching it +== 2025-01-23 12:36:22,760 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:22,760 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:22,808 build_log.py:267 INFO building... +== 2025-01-23 12:36:22,808 build_log.py:267 INFO testing... +== 2025-01-23 12:36:22,809 build_log.py:267 INFO installing... +== 2025-01-23 12:36:22,809 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:22,809 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:22,845 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:22,845 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:22,882 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:22,882 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:22,882 environment.py:93 INFO Environment variable PATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:22,882 pythonpackage.py:252 INFO Determining pip version... +== 2025-01-23 12:36:22,882 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:22,882 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:23,308 pythonpackage.py:260 INFO Found pip version: 23.1.2 +== 2025-01-23 12:36:23,308 pythonpackage.py:652 INFO Found pip version 23.1.2, OK +== 2025-01-23 12:36:23,309 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:23,309 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:26,934 run.py:700 INFO cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exit code 0 and output: +Processing /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/array_api_compat/array_api_compat-1.10.0 + Preparing metadata (setup.py): started + Preparing metadata (setup.py): finished with status 'done' +Building wheels for collected packages: array-api-compat + Building wheel for array-api-compat (setup.py): started + Building wheel for array-api-compat (setup.py): finished with status 'done' + Created wheel for array-api-compat: filename=array_api_compat-1.10.0-py3-none-any.whl size=50424 sha256=99343b636209cc0868241e0b3f5e6356332e933bfae2512f143a14aeb009049f + Stored in directory: /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home/pip/wheels/8e/ac/6f/6973729defa808da9ba1d0455cb55364c82fce6a7c13a9762f +Successfully built array-api-compat +Installing collected packages: array-api-compat +Successfully installed array-api-compat-1.10.0 + +== 2025-01-23 12:36:26,934 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:26,935 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:26,974 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:26,975 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:27,012 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:27,012 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:27,012 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:27,048 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:27,048 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:27,085 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:27,085 easyblock.py:2960 INFO Path to 'env' command to use in patched shebang lines: /usr/bin/env +== 2025-01-23 12:36:27,086 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:27,086 environment.py:93 INFO Environment variable PATH set to /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:27,086 build_log.py:267 INFO ... (took 5 secs) +== 2025-01-23 12:36:27,086 easyblock.py:1920 INFO Starting extension dpdata +== 2025-01-23 12:36:27,086 build_log.py:267 INFO installing extension dpdata 0.2.21 (5/6)... +== 2025-01-23 12:36:27,444 modules.py:628 INFO Checking whether foss/2023a exists... +== 2025-01-23 12:36:27,444 modules.py:636 INFO Module foss/2023a not found in list of available modules, checking via 'module show'... +== 2025-01-23 12:36:27,444 modules.py:656 INFO Result for existence check of foss/2023a module: True +== 2025-01-23 12:36:27,445 toolchain.py:766 INFO List of toolchain dependency modules and toolchain definition match! +== 2025-01-23 12:36:27,446 compiler.py:363 INFO _set_optimal_architecture: using march=native as optarch for x86_64/Intel. +== 2025-01-23 12:36:27,455 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/include was not found +== 2025-01-23 12:36:27,459 environment.py:93 INFO Environment variable BLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:27,459 environment.py:93 INFO Environment variable EBVARBLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable BLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable BLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable BLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable BLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable BLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable EBVARBLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,460 environment.py:93 INFO Environment variable BLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable EBVARBLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable BLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable EBVARBLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable BLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable EBVARBLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable BLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable EBVARBLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable EBVARCC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable CFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable EBVARCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable CPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable EBVARCPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable EBVARCXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:27,461 environment.py:93 INFO Environment variable CXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable EBVARCXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable EBVARF77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable EBVARF90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable F90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable EBVARF90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable EBVARFC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable FCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable EBVARFCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable FFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable EBVARFFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable FFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable EBVARFFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:27,462 environment.py:93 INFO Environment variable FFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable EBVARFFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable FFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable EBVARFFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable FFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable EBVARFFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable FFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:27,463 environment.py:93 INFO Environment variable FFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable FFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable FFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable FLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable EBVARFLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable EBVARLAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable EBVARLAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable EBVARLAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable EBVARLAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:27,464 environment.py:93 INFO Environment variable LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable EBVARLAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable EBVARLAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable LDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable EBVARLDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable LIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable EBVARLIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable LIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable EBVARLIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable LIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable EBVARLIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable LIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable EBVARLIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable LIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable EBVARLIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:27,465 environment.py:93 INFO Environment variable LIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable LIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable LIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable EBVARLIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable LIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable EBVARLIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable LIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable LIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable LIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable LIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:27,466 environment.py:93 INFO Environment variable MPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable EBVARMPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable MPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable EBVARMPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable MPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable EBVARMPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable MPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable EBVARMPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable MPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable EBVARMPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable MPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable EBVARMPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable MPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable EBVARMPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable MPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable EBVARMPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:27,467 environment.py:93 INFO Environment variable MPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable EBVARMPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable OMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable EBVAROMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable OMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable EBVAROMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable OMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable EBVAROMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable OMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable EBVAROMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable OMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable EBVAROMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable OPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable EBVAROPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable PRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable EBVARPRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:27,468 environment.py:93 INFO Environment variable SCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable EBVARSCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable SCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable EBVARSCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable SCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable SCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable SCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable EBVARSCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable SCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:27,469 environment.py:93 INFO Environment variable EBVARSCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:27,470 filetools.py:528 INFO Command python found at /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:27,470 pythonpackage.py:562 INFO Python command being used: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:27,470 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:27,470 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:27,507 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:27,507 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:27,679 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:27,679 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:27,715 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:27,716 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:27,886 filetools.py:1924 INFO Creating directory /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/dpdata (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:36:27,887 run.py:251 INFO Using /bin/bash as shell for running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dpdata-0.2.21.tar.gz +== 2025-01-23 12:36:27,887 run.py:260 INFO running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/dpdata-0.2.21.tar.gz +== 2025-01-23 12:36:27,968 build_log.py:267 INFO configuring... +== 2025-01-23 12:36:27,968 environment.py:93 INFO Environment variable PYTHONNOUSERSITE set to 1 (previous value: '1') +== 2025-01-23 12:36:27,968 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:27,968 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:28,004 pythonpackage.py:782 INFO Checking of $LDSHARED auto-enabled for sufficiently recent Python version 3.11.3 +== 2025-01-23 12:36:28,004 pythonpackage.py:794 INFO Python's value for $LDSHARED ('gcc -pthread -shared -Wl,-z,relro -Wl,-z,now -g -Wl,-z,relro -Wl,-z,now -g') uses current $CC value ('gcc'), not touching it +== 2025-01-23 12:36:28,004 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:28,004 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:28,052 build_log.py:267 INFO building... +== 2025-01-23 12:36:28,052 build_log.py:267 INFO testing... +== 2025-01-23 12:36:28,053 build_log.py:267 INFO installing... +== 2025-01-23 12:36:28,053 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:28,053 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:28,088 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:28,089 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:28,125 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:28,126 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:28,126 environment.py:93 INFO Environment variable PATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:28,126 pythonpackage.py:252 INFO Determining pip version... +== 2025-01-23 12:36:28,126 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:28,126 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:28,517 pythonpackage.py:260 INFO Found pip version: 23.1.2 +== 2025-01-23 12:36:28,518 pythonpackage.py:652 INFO Found pip version 23.1.2, OK +== 2025-01-23 12:36:28,518 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:28,518 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:32,058 run.py:700 INFO cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exit code 0 and output: +Processing /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/dpdata/dpdata-0.2.21 + Preparing metadata (pyproject.toml): started + Preparing metadata (pyproject.toml): finished with status 'done' +Building wheels for collected packages: dpdata + Building wheel for dpdata (pyproject.toml): started + Building wheel for dpdata (pyproject.toml): finished with status 'done' + Created wheel for dpdata: filename=dpdata-0.2.21-py3-none-any.whl size=150837 sha256=b558996d3dc3c5fe032a1037932e3554124595028e3645f76747028986f4cd3d + Stored in directory: /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/xdg-cache-home/pip/wheels/b4/93/21/1ce4c030b994fa73d0ab76fb0f1501ec33dacb579cf78c8b64 +Successfully built dpdata +Installing collected packages: dpdata +Successfully installed dpdata-0.2.21 + +== 2025-01-23 12:36:32,058 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:32,059 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:32,104 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:32,104 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:32,142 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:32,142 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:32,142 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:32,178 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:32,178 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:32,215 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:32,215 easyblock.py:2960 INFO Path to 'env' command to use in patched shebang lines: /usr/bin/env +== 2025-01-23 12:36:32,215 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:32,215 environment.py:93 INFO Environment variable PATH set to /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:32,216 build_log.py:267 INFO ... (took 5 secs) +== 2025-01-23 12:36:32,216 easyblock.py:1920 INFO Starting extension deepmd_kit +== 2025-01-23 12:36:32,216 build_log.py:267 INFO installing extension deepmd_kit 3.0.1 (6/6)... +== 2025-01-23 12:36:32,572 modules.py:628 INFO Checking whether foss/2023a exists... +== 2025-01-23 12:36:32,572 modules.py:636 INFO Module foss/2023a not found in list of available modules, checking via 'module show'... +== 2025-01-23 12:36:32,572 modules.py:656 INFO Result for existence check of foss/2023a module: True +== 2025-01-23 12:36:32,573 toolchain.py:766 INFO List of toolchain dependency modules and toolchain definition match! +== 2025-01-23 12:36:32,575 compiler.py:363 INFO _set_optimal_architecture: using march=native as optarch for x86_64/Intel. +== 2025-01-23 12:36:32,585 variables.py:203 WARNING flags_for_subdirs: directory /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/include was not found +== 2025-01-23 12:36:32,589 environment.py:93 INFO Environment variable BLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable EBVARBLAS_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable BLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable BLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable BLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable BLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable BLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable EBVARBLAS_LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable BLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,590 environment.py:93 INFO Environment variable EBVARBLAS_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable BLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable EBVARBLAS_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable BLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable EBVARBLAS_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable BLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable EBVARBLAS_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable BLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable EBVARBLAS_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable EBVARCC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable CFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable EBVARCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable CPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable EBVARCPPFLAGS set to -I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '-I/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include -I/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:32,591 environment.py:93 INFO Environment variable CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable EBVARCXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable CXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable EBVARCXXFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable EBVARF77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable EBVARF90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable F90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable EBVARF90FLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable EBVARFC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable FCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable EBVARFCFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable FFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable EBVARFFLAGS set to -O2 -ftree-vectorize -march=native -fno-math-errno (previous value: '-O2 -ftree-vectorize -march=native -fno-math-errno') +== 2025-01-23 12:36:32,592 environment.py:93 INFO Environment variable FFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable EBVARFFTW_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable FFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable EBVARFFTW_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable FFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable EBVARFFTW_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable FFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable EBVARFFTW_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable FFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable EBVARFFT_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/include') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable FFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable EBVARFFT_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,593 environment.py:93 INFO Environment variable FFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS set to libfftw3.so (previous value: 'libfftw3.so') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable FFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable EBVARFFT_SHARED_LIBS_MT set to libfftw3.so,libpthread.so (previous value: 'libfftw3.so,libpthread.so') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable FFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS set to libfftw3.a (previous value: 'libfftw3.a') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable FFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable EBVARFFT_STATIC_LIBS_MT set to libfftw3.a,libpthread.a (previous value: 'libfftw3.a,libpthread.a') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable FLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable EBVARFLIBS set to -lgfortran (previous value: '-lgfortran') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable LAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable EBVARLAPACK_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/include/flexiblas') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable LAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable EBVARLAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable LAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable EBVARLAPACK_MT_SHARED_LIBS set to libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:32,594 environment.py:93 INFO Environment variable LAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable EBVARLAPACK_MT_STATIC_LIBS set to libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable LAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable EBVARLAPACK_SHARED_LIBS set to libflexiblas.so,libgfortran.so (previous value: 'libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable LAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable EBVARLAPACK_STATIC_LIBS set to libflexiblas.a,libgfortran.a (previous value: 'libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable LDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable EBVARLDFLAGS set to -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib (previous value: '-L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/lib -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib64 -L/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/lib') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable LIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable EBVARLIBBLAS set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable LIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable EBVARLIBBLAS_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable LIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable EBVARLIBFFT set to -lfftw3 (previous value: '-lfftw3') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable LIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:32,595 environment.py:93 INFO Environment variable EBVARLIBFFT_MT set to -lfftw3 -lpthread (previous value: '-lfftw3 -lpthread') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable LIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable EBVARLIBLAPACK set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable LIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable LIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable EBVARLIBLAPACK_MT_ONLY set to -lflexiblas -lgfortran -lpthread (previous value: '-lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable LIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable EBVARLIBLAPACK_ONLY set to -lflexiblas -lgfortran (previous value: '-lflexiblas -lgfortran') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable LIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable EBVARLIBS set to -lm -lpthread (previous value: '-lm -lpthread') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable LIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK set to -lscalapack -lflexiblas -lgfortran (previous value: '-lscalapack -lflexiblas -lgfortran') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable LIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT set to -lscalapack -lflexiblas -lgfortran -lpthread (previous value: '-lscalapack -lflexiblas -lgfortran -lpthread') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable LIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:32,596 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_MT_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable LIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable EBVARLIBSCALAPACK_ONLY set to -lscalapack -lgfortran (previous value: '-lscalapack -lgfortran') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable MPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable EBVARMPICC set to mpicc (previous value: 'mpicc') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable MPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable EBVARMPICXX set to mpicxx (previous value: 'mpicxx') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable MPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable EBVARMPIF77 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable MPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable EBVARMPIF90 set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable MPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable EBVARMPIFC set to mpifort (previous value: 'mpifort') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable MPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable EBVARMPI_INC_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/include') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable MPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:32,597 environment.py:93 INFO Environment variable EBVARMPI_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64 (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable MPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable EBVARMPI_LIB_SHARED set to /apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/lib64/libmpi.so') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable MPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable EBVARMPI_LIB_STATIC set to (previous value: '') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable OMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable EBVAROMPI_CC set to gcc (previous value: 'gcc') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable OMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable EBVAROMPI_CXX set to g++ (previous value: 'g++') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable OMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable EBVAROMPI_F77 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable OMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable EBVAROMPI_F90 set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable OMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable EBVAROMPI_FC set to gfortran (previous value: 'gfortran') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable OPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:32,598 environment.py:93 INFO Environment variable EBVAROPTFLAGS set to -O2 -ftree-vectorize -march=native (previous value: '-O2 -ftree-vectorize -march=native') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable PRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable EBVARPRECFLAGS set to -fno-math-errno (previous value: '-fno-math-errno') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable SCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable EBVARSCALAPACK_INC_DIR set to (previous value: '') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable SCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable EBVARSCALAPACK_LIB_DIR set to /apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/ScaLAPACK/2.2.0-gompi-2023a-fb/lib') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable SCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so,libpthread.so') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable SCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable EBVARSCALAPACK_MT_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a,libpthread.a') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable SCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable EBVARSCALAPACK_SHARED_LIBS set to libscalapack.so,libflexiblas.so,libgfortran.so (previous value: 'libscalapack.so,libflexiblas.so,libgfortran.so') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable SCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:32,599 environment.py:93 INFO Environment variable EBVARSCALAPACK_STATIC_LIBS set to libscalapack.a,libflexiblas.a,libgfortran.a (previous value: 'libscalapack.a,libflexiblas.a,libgfortran.a') +== 2025-01-23 12:36:32,600 filetools.py:528 INFO Command python found at /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:32,600 pythonpackage.py:562 INFO Python command being used: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python +== 2025-01-23 12:36:32,600 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:32,600 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:32,638 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:32,638 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=False, prefix="/tmp/"))' +== 2025-01-23 12:36:32,816 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:32,817 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:32,854 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:32,854 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(plat_specific=True, prefix="/tmp/"))' +== 2025-01-23 12:36:33,027 filetools.py:1924 INFO Creating directory /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/deepmd_kit (parents: True, set_gid: False, sticky: False) +== 2025-01-23 12:36:33,027 run.py:251 INFO Using /bin/bash as shell for running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/deepmd_kit-3.0.1.tar.gz +== 2025-01-23 12:36:33,027 run.py:260 INFO running cmd: tar xzf /data/gent/vo/001/gvo00117/easybuild/sources/d/DeePDM-kit/extensions/deepmd_kit-3.0.1.tar.gz +== 2025-01-23 12:36:33,138 build_log.py:267 INFO configuring... +== 2025-01-23 12:36:33,138 environment.py:93 INFO Environment variable PYTHONNOUSERSITE set to 1 (previous value: '1') +== 2025-01-23 12:36:33,139 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:33,139 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:33,175 pythonpackage.py:782 INFO Checking of $LDSHARED auto-enabled for sufficiently recent Python version 3.11.3 +== 2025-01-23 12:36:33,175 pythonpackage.py:794 INFO Python's value for $LDSHARED ('gcc -pthread -shared -Wl,-z,relro -Wl,-z,now -g -Wl,-z,relro -Wl,-z,now -g') uses current $CC value ('gcc'), not touching it +== 2025-01-23 12:36:33,175 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:33,175 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -V; /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print(sys.executable, sys.path)' +== 2025-01-23 12:36:33,223 build_log.py:267 INFO building... +== 2025-01-23 12:36:33,223 build_log.py:267 INFO testing... +== 2025-01-23 12:36:33,224 build_log.py:267 INFO installing... +== 2025-01-23 12:36:33,224 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:33,224 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sys; print("%s.%s.%s" % sys.version_info[:3])' +== 2025-01-23 12:36:33,259 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:33,259 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -c 'import sysconfig; print(sysconfig.get_default_scheme())' +== 2025-01-23 12:36:33,296 pythonpackage.py:292 INFO Active Python installation scheme: posix_prefix +== 2025-01-23 12:36:33,296 environment.py:93 INFO Environment variable PYTHONPATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python (previous value: '/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ampere-ib/software/jax/0.4.25-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/absl-py/2.1.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/grpcio/1.57.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/protobuf-python/4.24.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers-python/23.5.26-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/h5py/3.9.0-foss-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/mpi4py/3.1.4-gompi-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/PyYAML/6.0-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/ml_dtypes/0.3.2-gfbf-2023a/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/lib/python3.11/site-packages:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/scikit-build-core/0.9.3-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cryptography/41.0.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/cffi/1.15.1-GCCcore-12.3.0/lib/python3.11/site-packages:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/easybuild/python') +== 2025-01-23 12:36:33,297 environment.py:93 INFO Environment variable PATH set to /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools (previous value: '/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/protobuf/24.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libpng/1.6.39-GCCcore-12.3.0/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/patchelf/0.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libjpeg-turbo/2.1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/NASM/2.16.01-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/ICU/73.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/giflib/5.2.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/flatbuffers/23.5.26-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/dill/0.3.7-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/HDF5/1.14.0-gompi-2023a/bin:/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/SciPy-bundle/2023.07-gfbf-2023a/bin:/apps/gent/RHEL8/cascadelake-ib/software/pybind11/2.11.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FFTW/3.3.10-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/FlexiBLAS/3.3.1-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenMPI/4.1.5-GCC-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCC/1.2.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/PMIx/4.2.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/UCX/1.14.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libevent/2.1.12-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/sbin:/apps/gent/RHEL8/cascadelake-ib/software/hwloc/2.9.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/numactl/2.0.16-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin:/apps/gent/RHEL8/cascadelake-ib/software/Perl/5.36.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/gettext/0.21.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libxml2/2.11.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/expat/2.5.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/poetry/1.5.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/hatchling/1.18.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/CMake/3.26.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/libarchive/3.6.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/cURL/8.0.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python-bundle-PyPI/2023.06-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/virtualenv/20.23.1-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/OpenSSL/1.1/bin:/apps/gent/RHEL8/cascadelake-ib/software/XZ/5.4.2-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/SQLite/3.42.0-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/Tcl/8.6.13-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/ncurses/6.4-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/bzip2/1.0.8-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/binutils/2.40-GCCcore-12.3.0/bin:/apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin:/usr/libexec/jobcli:/user/gent/470/vsc47063/easybuild/easybuild-framework:/usr/local/vsc/bin:/opt/VirtualGL/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/user/gent/470/vsc47063/.dotnet/tools') +== 2025-01-23 12:36:33,297 pythonpackage.py:252 INFO Determining pip version... +== 2025-01-23 12:36:33,297 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:33,297 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip --version +== 2025-01-23 12:36:34,738 pythonpackage.py:260 INFO Found pip version: 23.1.2 +== 2025-01-23 12:36:34,739 pythonpackage.py:652 INFO Found pip version 23.1.2, OK +== 2025-01-23 12:36:34,739 run.py:251 INFO Using /bin/bash as shell for running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:36:34,739 run.py:260 INFO running cmd: /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation . +== 2025-01-23 12:37:44,962 build_log.py:171 ERROR EasyBuild crashed with an error (at easybuild/easybuild-framework/easybuild/base/exceptions.py:126 in __init__): cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exit code 1 and output: +Processing /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/deepmd_kit/deepmd_kit-3.0.1 + Preparing metadata (pyproject.toml): started + Preparing metadata (pyproject.toml): finished with status 'done' +Building wheels for collected packages: deepmd-kit + Building wheel for deepmd-kit (pyproject.toml): started + Building wheel for deepmd-kit (pyproject.toml): still running... + Building wheel for deepmd-kit (pyproject.toml): finished with status 'error' + error: subprocess-exited-with-error + + Building wheel for deepmd-kit (pyproject.toml) did not run successfully. + exit code: 1 + > [3092 lines of output] + /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib/python3.11/site-packages/setuptools_scm/git.py:295: UserWarning: git archive did not support describe output + warnings.warn("git archive did not support describe output") + /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/lib/python3.11/site-packages/setuptools_scm/git.py:312: UserWarning: unexported git archival found + warnings.warn("unexported git archival found") + *** scikit-build-core 0.9.3 using CMake 3.26.3 (wheel) + *** Configuring CMake... + loading initial cache file build/py37-none-linux_x86_64/CMakeInit.txt + -- The C compiler identification is GNU 12.3.0 + -- The CXX compiler identification is GNU 12.3.0 + -- Detecting C compiler ABI info + -- Detecting C compiler ABI info - done + -- Check for working C compiler: /apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin/gcc - skipped + -- Detecting C compile features + -- Detecting C compile features - done + -- Detecting CXX compiler ABI info + -- Detecting CXX compiler ABI info - done + -- Check for working CXX compiler: /apps/gent/RHEL8/cascadelake-ib/software/GCCcore/12.3.0/bin/g++ - skipped + -- Detecting CXX compile features + -- Detecting CXX compile features - done + -- Found Git: /apps/gent/RHEL8/cascadelake-ib/software/git/2.41.0-GCCcore-12.3.0-nodocs/bin/git (found version "2.41.0") + fatal: not a git repository (or any parent up to mount point /) + Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). + fatal: not a git repository (or any parent up to mount point /) + Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). + fatal: not a git repository (or any parent up to mount point /) + Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). + fatal: not a git repository (or any parent up to mount point /) + Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). + -- Supported model version: 1.1 + -- Will not build nv GPU support + -- Will not build AMD GPU support + -- Disabled cpp interface build, looking for tensorflow_framework + CMake Warning (dev) at cmake/Findtensorflow.cmake:234 (file): + You have used file(GET_RUNTIME_DEPENDENCIES) in project mode. This is + probably not what you intended to do. Instead, please consider using it in + an install(CODE) or install(SCRIPT) command. For example: + + install(CODE [[ + file(GET_RUNTIME_DEPENDENCIES + # ... + ) + ]]) + Call Stack (most recent call first): + CMakeLists.txt:170 (find_package) + This warning is for project developers. Use -Wno-dev to suppress it. + + -- Found TensorFlow: /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include;/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include, , /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/libtensorflow_framework.so.2 in /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow;/apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/../tensorflow_core (found version "2.15.1") + -- Automatically determined OP_CXX_ABI=1 + -- Set GLIBCXX_USE_CXX_ABI=1 + -- Enabled backends: + -- - TensorFlow + -- - JAX + -- Performing Test CMAKE_HAVE_LIBC_PTHREAD + -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed + -- Looking for pthread_create in pthreads + -- Looking for pthread_create in pthreads - not found + -- Looking for pthread_create in pthread + -- Looking for pthread_create in pthread - found + -- Found Threads: TRUE + -- Found OpenMP_C: -fopenmp (found version "4.5") + -- Found OpenMP_CXX: -fopenmp (found version "4.5") + -- Found OpenMP: TRUE (found version "4.5") + -- Configuring done (26.2s) + -- Generating done (0.0s) + -- Build files have been written to: /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/deepmd_kit/deepmd_kit-3.0.1/build/py37-none-linux_x86_64 + *** Building project with Unix Makefiles... + [ 1%] Building CXX object lib/CMakeFiles/deepmd.dir/src/SimulationRegion.cpp.o + [ 2%] Building CXX object lib/CMakeFiles/deepmd.dir/src/coord.cc.o + [ 4%] Building CXX object lib/CMakeFiles/deepmd.dir/src/env_mat.cc.o + [ 5%] Building CXX object lib/CMakeFiles/deepmd.dir/src/env_mat_nvnmd.cc.o + [ 6%] Building CXX object lib/CMakeFiles/deepmd.dir/src/ewald.cc.o + [ 8%] Building CXX object lib/CMakeFiles/deepmd.dir/src/fmt_nlist.cc.o + [ 9%] Building CXX object lib/CMakeFiles/deepmd.dir/src/gelu.cc.o + [ 10%] Building CXX object lib/CMakeFiles/deepmd.dir/src/map_aparam.cc.o + [ 12%] Building CXX object lib/CMakeFiles/deepmd.dir/src/neighbor_list.cc.o + [ 13%] Building CXX object lib/CMakeFiles/deepmd.dir/src/pair_tab.cc.o + [ 14%] Building CXX object lib/CMakeFiles/deepmd.dir/src/pairwise.cc.o + [ 16%] Building CXX object lib/CMakeFiles/deepmd.dir/src/prod_env_mat.cc.o + [ 17%] Building CXX object lib/CMakeFiles/deepmd.dir/src/prod_env_mat_nvnmd.cc.o + [ 18%] Building CXX object lib/CMakeFiles/deepmd.dir/src/prod_force.cc.o + [ 20%] Building CXX object lib/CMakeFiles/deepmd.dir/src/prod_force_grad.cc.o + [ 21%] Building CXX object lib/CMakeFiles/deepmd.dir/src/prod_virial.cc.o + [ 22%] Building CXX object lib/CMakeFiles/deepmd.dir/src/prod_virial_grad.cc.o + [ 24%] Building CXX object lib/CMakeFiles/deepmd.dir/src/region.cc.o + [ 25%] Building CXX object lib/CMakeFiles/deepmd.dir/src/soft_min_switch.cc.o + [ 27%] Building CXX object lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force.cc.o + [ 28%] Building CXX object lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force_grad.cc.o + [ 29%] Building CXX object lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial.cc.o + [ 31%] Building CXX object lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial_grad.cc.o + [ 32%] Building CXX object lib/CMakeFiles/deepmd.dir/src/tabulate.cc.o + [ 33%] Building CXX object lib/CMakeFiles/deepmd.dir/src/utilities.cc.o + [ 35%] Linking CXX shared library libdeepmd.so + [ 35%] Built target deepmd + [ 36%] Building CXX object op/tf/CMakeFiles/deepmd_op.dir/cmake_pch.hxx.gch + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op.h:26, + from /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/deepmd_kit/deepmd_kit-3.0.1/source/op/tf/custom_op.h:9, + from /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/deepmd_kit/deepmd_kit-3.0.1/build/py37-none-linux_x86_64/op/tf/CMakeFiles/deepmd_op.dir/cmake_pch.hxx:5, + from : + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_builder.h:27, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:24, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op.h:27: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:33: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:36: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:33: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:33: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:34: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/status.h:39, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/platform/status.h:23, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/lib/core/status.h:19, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_base.h:24, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.h:21, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:27, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_builder.h:28: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:23, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op.h:28: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:24, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op.h:30: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_base.h:25, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:30, + from /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/deepmd_kit/deepmd_kit-3.0.1/source/op/tf/custom_op.h:10: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:31: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:33: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:34: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:36: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/versions.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/versions.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/versions.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:32: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:59: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:37: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:39: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:36: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:37: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:40: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:41: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:42: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:38: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:43: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rpc_options.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rpc_options.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rpc_options.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rpc_options.pb.h:31: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/rpc_options.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/rpc_options.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/rpc_options.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:44: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:17:2: error: #error This file was generated by an older version of protoc which is + 17 | #error This file was generated by an older version of protoc which is + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:18:2: error: #error incompatible with your Protocol Buffer headers. Please + 18 | #error incompatible with your Protocol Buffer headers. Please + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:19:2: error: #error regenerate this file with a newer version of protoc. + 19 | #error regenerate this file with a newer version of protoc. + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:37:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 37 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:41:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 41 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:47:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 47 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2ffull_5ftype_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:53:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 53 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:55:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 55 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:540:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 540 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:544:14: error: EnumDescriptor does not name a type + 544 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::FullTypeId>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:548:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 548 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:36:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 36 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:40:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 40 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:46:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 46 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2ftensor_5fshape_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:55:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 55 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:57:48: error: Arena has not been declared + 57 | template<> ::tensorflow::TensorShapeProto_Dim* Arena::CreateMaybeMessage<::tensorflow::TensorShapeProto_Dim>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:57:73: error: expected initializer before < token + 57 | template<> ::tensorflow::TensorShapeProto_Dim* Arena::CreateMaybeMessage<::tensorflow::TensorShapeProto_Dim>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h:58:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 58 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:37:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 37 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:41:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 41 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:47:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 47 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2ftypes_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:53:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 53 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:55:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 55 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:323:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 323 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:327:14: error: EnumDescriptor does not name a type + 327 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::DataType>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.pb.h:331:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 331 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:38:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 38 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:42:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 42 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:48:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 48 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fresource_5fhandle_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:57:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 57 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:59:61: error: Arena has not been declared + 59 | template<> ::tensorflow::ResourceHandleProto_DtypeAndShape* Arena::CreateMaybeMessage<::tensorflow::ResourceHandleProto_DtypeAndShape>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:59:86: error: expected initializer before < token + 59 | template<> ::tensorflow::ResourceHandleProto_DtypeAndShape* Arena::CreateMaybeMessage<::tensorflow::ResourceHandleProto_DtypeAndShape>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h:60:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 60 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:39:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 39 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:43:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 43 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:49:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 49 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2ftensor_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:58:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 58 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:60:50: error: Arena has not been declared + 60 | template<> ::tensorflow::VariantTensorDataProto* Arena::CreateMaybeMessage<::tensorflow::VariantTensorDataProto>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:60:75: error: expected initializer before < token + 60 | template<> ::tensorflow::VariantTensorDataProto* Arena::CreateMaybeMessage<::tensorflow::VariantTensorDataProto>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.pb.h:61:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 61 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:42:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 42 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:46:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 46 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:52:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 52 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fattr_5fvalue_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:67:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 67 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:69:47: error: Arena has not been declared + 69 | template<> ::tensorflow::AttrValue_ListValue* Arena::CreateMaybeMessage<::tensorflow::AttrValue_ListValue>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:69:72: error: expected initializer before < token + 69 | template<> ::tensorflow::AttrValue_ListValue* Arena::CreateMaybeMessage<::tensorflow::AttrValue_ListValue>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:70:40: error: Arena has not been declared + 70 | template<> ::tensorflow::NameAttrList* Arena::CreateMaybeMessage<::tensorflow::NameAttrList>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:70:65: error: expected initializer before < token + 70 | template<> ::tensorflow::NameAttrList* Arena::CreateMaybeMessage<::tensorflow::NameAttrList>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:71:59: error: Arena has not been declared + 71 | template<> ::tensorflow::NameAttrList_AttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::NameAttrList_AttrEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:71:84: error: expected initializer before < token + 71 | template<> ::tensorflow::NameAttrList_AttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::NameAttrList_AttrEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value.pb.h:72:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 72 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:40:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 40 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:44:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 44 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:50:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 50 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fop_5fdef_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:68:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 68 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:70:40: error: Arena has not been declared + 70 | template<> ::tensorflow::OpDef_ArgDef* Arena::CreateMaybeMessage<::tensorflow::OpDef_ArgDef>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:70:65: error: expected initializer before < token + 70 | template<> ::tensorflow::OpDef_ArgDef* Arena::CreateMaybeMessage<::tensorflow::OpDef_ArgDef>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:71:41: error: Arena has not been declared + 71 | template<> ::tensorflow::OpDef_AttrDef* Arena::CreateMaybeMessage<::tensorflow::OpDef_AttrDef>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:71:66: error: expected initializer before < token + 71 | template<> ::tensorflow::OpDef_AttrDef* Arena::CreateMaybeMessage<::tensorflow::OpDef_AttrDef>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:72:41: error: Arena has not been declared + 72 | template<> ::tensorflow::OpDeprecation* Arena::CreateMaybeMessage<::tensorflow::OpDeprecation>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:72:66: error: expected initializer before < token + 72 | template<> ::tensorflow::OpDeprecation* Arena::CreateMaybeMessage<::tensorflow::OpDeprecation>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:73:34: error: Arena has not been declared + 73 | template<> ::tensorflow::OpList* Arena::CreateMaybeMessage<::tensorflow::OpList>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:73:59: error: expected initializer before < token + 73 | template<> ::tensorflow::OpList* Arena::CreateMaybeMessage<::tensorflow::OpList>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:74:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 74 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:35:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 35 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:39:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 39 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:45:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 45 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tsl_2fprotobuf_2ferror_5fcodes_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:46:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 46 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:113:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 113 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:117:14: error: EnumDescriptor does not name a type + 117 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::error::Code>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/error_codes.pb.h:121:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 121 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/status.h:63:23: error: error in namespace tensorflow does not name a type + 63 | typedef ::tensorflow::error::Code Code; + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/status.h:73:51: error: Code in namespace tensorflow::error does not name a type + 73 | inline bool operator==(const ::tensorflow::error::Code& c1, + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/status.h:78:51: error: Code in namespace tensorflow::error does not name a type + 78 | inline bool operator!=(const ::tensorflow::error::Code& c1, + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/status.h:86:51: error: Code in namespace tensorflow::error does not name a type + 86 | const ::tensorflow::error::Code& c2) { + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/status.h:91:51: error: Code in namespace tensorflow::error does not name a type + 91 | const ::tensorflow::error::Code& c2) { + | ^~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/platform/errors.h:30, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_base.h:25: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:40:26: error: ABORTED has not been declared in tensorflow::error + 40 | using tensorflow::error::ABORTED; + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:41:26: error: ALREADY_EXISTS has not been declared in tensorflow::error + 41 | using tensorflow::error::ALREADY_EXISTS; + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:42:26: error: CANCELLED has not been declared in tensorflow::error + 42 | using tensorflow::error::CANCELLED; + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:43:26: error: Code has not been declared in tensorflow::error + 43 | using tensorflow::error::Code; + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:44:26: error: DATA_LOSS has not been declared in tensorflow::error + 44 | using tensorflow::error::DATA_LOSS; + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:45:26: error: DEADLINE_EXCEEDED has not been declared in tensorflow::error + 45 | using tensorflow::error::DEADLINE_EXCEEDED; + | ^~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:46:26: error: FAILED_PRECONDITION has not been declared in tensorflow::error + 46 | using tensorflow::error::FAILED_PRECONDITION; + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:47:26: error: INTERNAL has not been declared in tensorflow::error + 47 | using tensorflow::error::INTERNAL; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:48:26: error: INVALID_ARGUMENT has not been declared in tensorflow::error + 48 | using tensorflow::error::INVALID_ARGUMENT; + | ^~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:49:26: error: NOT_FOUND has not been declared in tensorflow::error + 49 | using tensorflow::error::NOT_FOUND; + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:50:26: error: OK has not been declared in tensorflow::error + 50 | using tensorflow::error::OK; + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:51:26: error: OUT_OF_RANGE has not been declared in tensorflow::error + 51 | using tensorflow::error::OUT_OF_RANGE; + | ^~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:52:26: error: PERMISSION_DENIED has not been declared in tensorflow::error + 52 | using tensorflow::error::PERMISSION_DENIED; + | ^~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:53:26: error: RESOURCE_EXHAUSTED has not been declared in tensorflow::error + 53 | using tensorflow::error::RESOURCE_EXHAUSTED; + | ^~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:54:26: error: UNAUTHENTICATED has not been declared in tensorflow::error + 54 | using tensorflow::error::UNAUTHENTICATED; + | ^~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:55:26: error: UNAVAILABLE has not been declared in tensorflow::error + 55 | using tensorflow::error::UNAVAILABLE; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:56:26: error: UNIMPLEMENTED has not been declared in tensorflow::error + 56 | using tensorflow::error::UNIMPLEMENTED; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:57:26: error: UNKNOWN has not been declared in tensorflow::error + 57 | using tensorflow::error::UNKNOWN; + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/errors.h:641:21: error: OK has not been declared in tsl::error + 641 | using ::tsl::error::OK; // NOLINT + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/platform/errors.h:37:14: error: OK has not been declared in tensorflow::error + 37 | using error::OK; + | ^~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_handle.h:22: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.h:126:3: error: DataType does not name a type + 126 | DataType data_type() const { return static_cast(buf()[13]); } + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.h:127:22: error: DataType has not been declared + 127 | void set_data_type(DataType dt) { + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.h:324:36: error: expected ) before dt + 324 | explicit TensorShapeBase(DataType dt); + | ~ ^~~ + | ) + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.h:763:8: error: int tensorflow::TensorShapeBase::TensorShapeBase is not a static data member of class tensorflow::TensorShapeBase + 763 | inline TensorShapeBase::TensorShapeBase(DataType dt) { + | ^~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.h:763:48: error: template definition of non-template int tensorflow::TensorShapeBase::TensorShapeBase + 763 | inline TensorShapeBase::TensorShapeBase(DataType dt) { + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.h:763:48: error: DataType was not declared in this scope + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_shape.h:782:3: error: DataType does not name a type + 782 | DataType dtype; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:79:28: error: DataType was not declared in this scope + 79 | typedef gtl::InlinedVector DataTypeVector; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:79:39: error: template argument 1 is invalid + 79 | typedef gtl::InlinedVector DataTypeVector; + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:79:39: error: template argument 3 is invalid + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:80:25: error: DataType was not declared in this scope + 80 | typedef gtl::ArraySlice DataTypeSlice; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:80:33: error: template argument 1 is invalid + 80 | typedef gtl::ArraySlice DataTypeSlice; + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:87:28: error: DataType was not declared in this scope + 87 | std::string DataTypeString(DataType dtype); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:107:27: error: DataType has not been declared + 107 | constexpr bool Contains(DataType dt) const { + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:120:5: error: DataType does not name a type; did you mean DataTypeSet? + 120 | DataType operator*() const { return static_cast(pos_); } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:209:41: error: DataType has not been declared + 209 | bool DataTypeFromString(StringPiece sp, DataType* dt); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:211:36: error: DataType was not declared in this scope; did you mean DataTypeSet? + 211 | constexpr inline DataTypeSet ToSet(DataType dt) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:217:23: error: DataType was not declared in this scope; did you mean DataTypeSet? + 217 | inline bool IsRefType(DataType dtype) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:220:8: error: DataType does not name a type; did you mean DataTypeSet? + 220 | inline DataType MakeRefType(DataType dtype) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:224:8: error: DataType does not name a type; did you mean DataTypeSet? + 224 | inline DataType RemoveRefType(DataType dtype) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:228:8: error: DataType does not name a type; did you mean DataTypeSet? + 228 | inline DataType BaseType(DataType dtype) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:233:29: error: DataType was not declared in this scope; did you mean DataTypeSet? + 233 | inline bool TypesCompatible(DataType expected, DataType actual) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:233:48: error: DataType was not declared in this scope; did you mean DataTypeSet? + 233 | inline bool TypesCompatible(DataType expected, DataType actual) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:233:63: error: expression list treated as compound expression in initializer [-fpermissive] + 233 | inline bool TypesCompatible(DataType expected, DataType actual) { + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:239:11: error: DT_FLOAT was not declared in this scope + 239 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_UINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:239:29: error: DT_DOUBLE was not declared in this scope + 239 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_UINT8) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:239:48: error: DT_INT32 was not declared in this scope + 239 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_UINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:239:66: error: DT_UINT8 was not declared in this scope + 239 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_UINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:240:11: error: DT_INT16 was not declared in this scope + 240 | ToSet(DT_INT16) | ToSet(DT_UINT16) | ToSet(DT_INT8) | ToSet(DT_STRING) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:240:29: error: DT_UINT16 was not declared in this scope + 240 | ToSet(DT_INT16) | ToSet(DT_UINT16) | ToSet(DT_INT8) | ToSet(DT_STRING) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:240:48: error: DT_INT8 was not declared in this scope + 240 | ToSet(DT_INT16) | ToSet(DT_UINT16) | ToSet(DT_INT8) | ToSet(DT_STRING) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:240:65: error: DT_STRING was not declared in this scope + 240 | ToSet(DT_INT16) | ToSet(DT_UINT16) | ToSet(DT_INT8) | ToSet(DT_STRING) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:241:11: error: DT_COMPLEX64 was not declared in this scope + 241 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128) | ToSet(DT_INT64) | + | ^~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:241:33: error: DT_COMPLEX128 was not declared in this scope + 241 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128) | ToSet(DT_INT64) | + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:241:56: error: DT_INT64 was not declared in this scope + 241 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128) | ToSet(DT_INT64) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:242:11: error: DT_BOOL was not declared in this scope + 242 | ToSet(DT_BOOL) | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:242:28: error: DT_QINT8 was not declared in this scope + 242 | ToSet(DT_BOOL) | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:242:46: error: DT_QUINT8 was not declared in this scope + 242 | ToSet(DT_BOOL) | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:242:65: error: DT_QINT16 was not declared in this scope + 242 | ToSet(DT_BOOL) | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:243:11: error: DT_QUINT16 was not declared in this scope + 243 | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | ToSet(DT_HALF) | ToSet(DT_RESOURCE) | + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:243:31: error: DT_QINT32 was not declared in this scope + 243 | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | ToSet(DT_HALF) | ToSet(DT_RESOURCE) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:243:50: error: DT_HALF was not declared in this scope + 243 | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | ToSet(DT_HALF) | ToSet(DT_RESOURCE) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:243:67: error: DT_RESOURCE was not declared in this scope + 243 | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | ToSet(DT_HALF) | ToSet(DT_RESOURCE) | + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:244:11: error: DT_VARIANT was not declared in this scope + 244 | ToSet(DT_VARIANT) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:244:31: error: DT_UINT32 was not declared in this scope + 244 | ToSet(DT_VARIANT) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:244:50: error: DT_UINT64 was not declared in this scope + 244 | ToSet(DT_VARIANT) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:245:11: error: DT_BFLOAT16 was not declared in this scope + 245 | ToSet(DT_BFLOAT16) | ToSet(DT_FLOAT8_E5M2) | ToSet(DT_FLOAT8_E4M3FN) | + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:245:32: error: DT_FLOAT8_E5M2 was not declared in this scope + 245 | ToSet(DT_BFLOAT16) | ToSet(DT_FLOAT8_E5M2) | ToSet(DT_FLOAT8_E4M3FN) | + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:245:56: error: DT_FLOAT8_E4M3FN was not declared in this scope + 245 | ToSet(DT_BFLOAT16) | ToSet(DT_FLOAT8_E5M2) | ToSet(DT_FLOAT8_E4M3FN) | + | ^~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:246:11: error: DT_INT4 was not declared in this scope + 246 | ToSet(DT_INT4) | ToSet(DT_UINT4); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:246:28: error: DT_UINT4 was not declared in this scope + 246 | ToSet(DT_INT4) | ToSet(DT_UINT4); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:254:11: error: DT_FLOAT was not declared in this scope + 254 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_INT64) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:254:29: error: DT_DOUBLE was not declared in this scope + 254 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_INT64) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:254:48: error: DT_INT32 was not declared in this scope + 254 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_INT64) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:254:66: error: DT_INT64 was not declared in this scope + 254 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_INT64) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:255:11: error: DT_UINT8 was not declared in this scope + 255 | ToSet(DT_UINT8) | ToSet(DT_INT16) | ToSet(DT_INT8) | ToSet(DT_UINT16) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:255:29: error: DT_INT16 was not declared in this scope + 255 | ToSet(DT_UINT8) | ToSet(DT_INT16) | ToSet(DT_INT8) | ToSet(DT_UINT16) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:255:47: error: DT_INT8 was not declared in this scope + 255 | ToSet(DT_UINT8) | ToSet(DT_INT16) | ToSet(DT_INT8) | ToSet(DT_UINT16) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:255:64: error: DT_UINT16 was not declared in this scope + 255 | ToSet(DT_UINT8) | ToSet(DT_INT16) | ToSet(DT_INT8) | ToSet(DT_UINT16) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:256:11: error: DT_HALF was not declared in this scope + 256 | ToSet(DT_HALF) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | ToSet(DT_BFLOAT16); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:256:28: error: DT_UINT32 was not declared in this scope + 256 | ToSet(DT_HALF) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | ToSet(DT_BFLOAT16); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:256:47: error: DT_UINT64 was not declared in this scope + 256 | ToSet(DT_HALF) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | ToSet(DT_BFLOAT16); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:256:66: error: DT_BFLOAT16 was not declared in this scope + 256 | ToSet(DT_HALF) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | ToSet(DT_BFLOAT16); + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:263:11: error: DT_FLOAT was not declared in this scope + 263 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT64) | ToSet(DT_INT32) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:263:29: error: DT_DOUBLE was not declared in this scope + 263 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT64) | ToSet(DT_INT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:263:48: error: DT_INT64 was not declared in this scope + 263 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT64) | ToSet(DT_INT32) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:263:66: error: DT_INT32 was not declared in this scope + 263 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT64) | ToSet(DT_INT32) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:264:11: error: DT_UINT8 was not declared in this scope + 264 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:264:29: error: DT_UINT16 was not declared in this scope + 264 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:264:48: error: DT_INT16 was not declared in this scope + 264 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:264:66: error: DT_INT8 was not declared in this scope + 264 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:265:11: error: DT_COMPLEX64 was not declared in this scope + 265 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128) | ToSet(DT_QINT8) | + | ^~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:265:33: error: DT_COMPLEX128 was not declared in this scope + 265 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128) | ToSet(DT_QINT8) | + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:265:56: error: DT_QINT8 was not declared in this scope + 265 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128) | ToSet(DT_QINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:266:11: error: DT_QUINT8 was not declared in this scope + 266 | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:266:30: error: DT_QINT16 was not declared in this scope + 266 | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:266:49: error: DT_QUINT16 was not declared in this scope + 266 | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:266:69: error: DT_QINT32 was not declared in this scope + 266 | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:267:11: error: DT_HALF was not declared in this scope + 267 | ToSet(DT_HALF) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | ToSet(DT_BFLOAT16); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:267:28: error: DT_UINT32 was not declared in this scope + 267 | ToSet(DT_HALF) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | ToSet(DT_BFLOAT16); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:267:47: error: DT_UINT64 was not declared in this scope + 267 | ToSet(DT_HALF) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | ToSet(DT_BFLOAT16); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:267:66: error: DT_BFLOAT16 was not declared in this scope + 267 | ToSet(DT_HALF) | ToSet(DT_UINT32) | ToSet(DT_UINT64) | ToSet(DT_BFLOAT16); + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:270:47: error: DT_QINT8 was not declared in this scope + 270 | constexpr DataTypeSet kQuantizedTypes = ToSet(DT_QINT8) | ToSet(DT_QUINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:270:65: error: DT_QUINT8 was not declared in this scope + 270 | constexpr DataTypeSet kQuantizedTypes = ToSet(DT_QINT8) | ToSet(DT_QUINT8) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:271:47: error: DT_QINT16 was not declared in this scope + 271 | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:271:66: error: DT_QUINT16 was not declared in this scope + 271 | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:272:47: error: DT_QINT32 was not declared in this scope + 272 | ToSet(DT_QINT32); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:277:11: error: DT_FLOAT was not declared in this scope + 277 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_INT64) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:277:29: error: DT_DOUBLE was not declared in this scope + 277 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_INT64) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:277:48: error: DT_INT32 was not declared in this scope + 277 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_INT64) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:277:66: error: DT_INT64 was not declared in this scope + 277 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_INT64) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:278:11: error: DT_UINT8 was not declared in this scope + 278 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:278:29: error: DT_UINT16 was not declared in this scope + 278 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:278:48: error: DT_INT16 was not declared in this scope + 278 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:278:66: error: DT_INT8 was not declared in this scope + 278 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:279:11: error: DT_QINT8 was not declared in this scope + 279 | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:279:29: error: DT_QUINT8 was not declared in this scope + 279 | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:279:48: error: DT_QINT16 was not declared in this scope + 279 | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:279:67: error: DT_QUINT16 was not declared in this scope + 279 | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:280:11: error: DT_QINT32 was not declared in this scope + 280 | ToSet(DT_QINT32) | ToSet(DT_HALF) | ToSet(DT_BFLOAT16); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:280:30: error: DT_HALF was not declared in this scope + 280 | ToSet(DT_QINT32) | ToSet(DT_HALF) | ToSet(DT_BFLOAT16); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:280:47: error: DT_BFLOAT16 was not declared in this scope + 280 | ToSet(DT_QINT32) | ToSet(DT_HALF) | ToSet(DT_BFLOAT16); + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:342:11: error: DataType has not been declared + 342 | template + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:362:1: error: DataType does not name a type; did you mean DataTypeSet? + 362 | MATCH_TYPE_AND_ENUM(float, DT_FLOAT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:362:1: error: DataType does not name a type; did you mean DataTypeSet? + 362 | MATCH_TYPE_AND_ENUM(float, DT_FLOAT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:362:1: error: DataType does not name a type; did you mean DataTypeSet? + 362 | MATCH_TYPE_AND_ENUM(float, DT_FLOAT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:362:1: error: DT_FLOAT was not declared in this scope + 362 | MATCH_TYPE_AND_ENUM(float, DT_FLOAT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:362:1: error: template argument 1 is invalid + 362 | MATCH_TYPE_AND_ENUM(float, DT_FLOAT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:363:1: error: DataType does not name a type; did you mean DataTypeSet? + 363 | MATCH_TYPE_AND_ENUM(double, DT_DOUBLE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:363:1: error: DataType does not name a type; did you mean DataTypeSet? + 363 | MATCH_TYPE_AND_ENUM(double, DT_DOUBLE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:363:1: error: DataType does not name a type; did you mean DataTypeSet? + 363 | MATCH_TYPE_AND_ENUM(double, DT_DOUBLE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:363:1: error: DT_DOUBLE was not declared in this scope + 363 | MATCH_TYPE_AND_ENUM(double, DT_DOUBLE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:363:1: error: template argument 1 is invalid + 363 | MATCH_TYPE_AND_ENUM(double, DT_DOUBLE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:364:1: error: DataType does not name a type; did you mean DataTypeSet? + 364 | MATCH_TYPE_AND_ENUM(int32, DT_INT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:364:1: error: DataType does not name a type; did you mean DataTypeSet? + 364 | MATCH_TYPE_AND_ENUM(int32, DT_INT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:364:1: error: DataType does not name a type; did you mean DataTypeSet? + 364 | MATCH_TYPE_AND_ENUM(int32, DT_INT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:364:1: error: DT_INT32 was not declared in this scope + 364 | MATCH_TYPE_AND_ENUM(int32, DT_INT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:364:1: error: template argument 1 is invalid + 364 | MATCH_TYPE_AND_ENUM(int32, DT_INT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:365:1: error: DataType does not name a type; did you mean DataTypeSet? + 365 | MATCH_TYPE_AND_ENUM(uint32, DT_UINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:365:1: error: DataType does not name a type; did you mean DataTypeSet? + 365 | MATCH_TYPE_AND_ENUM(uint32, DT_UINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:365:1: error: DataType does not name a type; did you mean DataTypeSet? + 365 | MATCH_TYPE_AND_ENUM(uint32, DT_UINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:365:1: error: DT_UINT32 was not declared in this scope + 365 | MATCH_TYPE_AND_ENUM(uint32, DT_UINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:365:1: error: template argument 1 is invalid + 365 | MATCH_TYPE_AND_ENUM(uint32, DT_UINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:366:1: error: DataType does not name a type; did you mean DataTypeSet? + 366 | MATCH_TYPE_AND_ENUM(uint16, DT_UINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:366:1: error: DataType does not name a type; did you mean DataTypeSet? + 366 | MATCH_TYPE_AND_ENUM(uint16, DT_UINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:366:1: error: DataType does not name a type; did you mean DataTypeSet? + 366 | MATCH_TYPE_AND_ENUM(uint16, DT_UINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:366:1: error: DT_UINT16 was not declared in this scope + 366 | MATCH_TYPE_AND_ENUM(uint16, DT_UINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:366:1: error: template argument 1 is invalid + 366 | MATCH_TYPE_AND_ENUM(uint16, DT_UINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:367:1: error: DataType does not name a type; did you mean DataTypeSet? + 367 | MATCH_TYPE_AND_ENUM(uint8, DT_UINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:367:1: error: DataType does not name a type; did you mean DataTypeSet? + 367 | MATCH_TYPE_AND_ENUM(uint8, DT_UINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:367:1: error: DataType does not name a type; did you mean DataTypeSet? + 367 | MATCH_TYPE_AND_ENUM(uint8, DT_UINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:367:1: error: DT_UINT8 was not declared in this scope + 367 | MATCH_TYPE_AND_ENUM(uint8, DT_UINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:367:1: error: template argument 1 is invalid + 367 | MATCH_TYPE_AND_ENUM(uint8, DT_UINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:368:1: error: DataType does not name a type; did you mean DataTypeSet? + 368 | MATCH_TYPE_AND_ENUM(int16, DT_INT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:368:1: error: DataType does not name a type; did you mean DataTypeSet? + 368 | MATCH_TYPE_AND_ENUM(int16, DT_INT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:368:1: error: DataType does not name a type; did you mean DataTypeSet? + 368 | MATCH_TYPE_AND_ENUM(int16, DT_INT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:368:1: error: DT_INT16 was not declared in this scope + 368 | MATCH_TYPE_AND_ENUM(int16, DT_INT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:368:1: error: template argument 1 is invalid + 368 | MATCH_TYPE_AND_ENUM(int16, DT_INT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:369:1: error: DataType does not name a type; did you mean DataTypeSet? + 369 | MATCH_TYPE_AND_ENUM(int8, DT_INT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:369:1: error: DataType does not name a type; did you mean DataTypeSet? + 369 | MATCH_TYPE_AND_ENUM(int8, DT_INT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:369:1: error: DataType does not name a type; did you mean DataTypeSet? + 369 | MATCH_TYPE_AND_ENUM(int8, DT_INT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:369:1: error: DT_INT8 was not declared in this scope + 369 | MATCH_TYPE_AND_ENUM(int8, DT_INT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:369:1: error: template argument 1 is invalid + 369 | MATCH_TYPE_AND_ENUM(int8, DT_INT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:370:1: error: DataType does not name a type; did you mean DataTypeSet? + 370 | MATCH_TYPE_AND_ENUM(tstring, DT_STRING); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:370:1: error: DataType does not name a type; did you mean DataTypeSet? + 370 | MATCH_TYPE_AND_ENUM(tstring, DT_STRING); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:370:1: error: DataType does not name a type; did you mean DataTypeSet? + 370 | MATCH_TYPE_AND_ENUM(tstring, DT_STRING); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:370:1: error: DT_STRING was not declared in this scope + 370 | MATCH_TYPE_AND_ENUM(tstring, DT_STRING); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:370:1: error: template argument 1 is invalid + 370 | MATCH_TYPE_AND_ENUM(tstring, DT_STRING); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:371:1: error: DataType does not name a type; did you mean DataTypeSet? + 371 | MATCH_TYPE_AND_ENUM(complex64, DT_COMPLEX64); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:371:1: error: DataType does not name a type; did you mean DataTypeSet? + 371 | MATCH_TYPE_AND_ENUM(complex64, DT_COMPLEX64); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:371:1: error: DataType does not name a type; did you mean DataTypeSet? + 371 | MATCH_TYPE_AND_ENUM(complex64, DT_COMPLEX64); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:371:1: error: DT_COMPLEX64 was not declared in this scope + 371 | MATCH_TYPE_AND_ENUM(complex64, DT_COMPLEX64); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:371:1: error: template argument 1 is invalid + 371 | MATCH_TYPE_AND_ENUM(complex64, DT_COMPLEX64); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:372:1: error: DataType does not name a type; did you mean DataTypeSet? + 372 | MATCH_TYPE_AND_ENUM(complex128, DT_COMPLEX128); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:372:1: error: DataType does not name a type; did you mean DataTypeSet? + 372 | MATCH_TYPE_AND_ENUM(complex128, DT_COMPLEX128); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:372:1: error: DataType does not name a type; did you mean DataTypeSet? + 372 | MATCH_TYPE_AND_ENUM(complex128, DT_COMPLEX128); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:372:1: error: DT_COMPLEX128 was not declared in this scope + 372 | MATCH_TYPE_AND_ENUM(complex128, DT_COMPLEX128); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:372:1: error: template argument 1 is invalid + 372 | MATCH_TYPE_AND_ENUM(complex128, DT_COMPLEX128); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:373:1: error: DataType does not name a type; did you mean DataTypeSet? + 373 | MATCH_TYPE_AND_ENUM(bool, DT_BOOL); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:373:1: error: DataType does not name a type; did you mean DataTypeSet? + 373 | MATCH_TYPE_AND_ENUM(bool, DT_BOOL); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:373:1: error: DataType does not name a type; did you mean DataTypeSet? + 373 | MATCH_TYPE_AND_ENUM(bool, DT_BOOL); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:373:1: error: DT_BOOL was not declared in this scope + 373 | MATCH_TYPE_AND_ENUM(bool, DT_BOOL); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:373:1: error: template argument 1 is invalid + 373 | MATCH_TYPE_AND_ENUM(bool, DT_BOOL); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:374:1: error: DataType does not name a type; did you mean DataTypeSet? + 374 | MATCH_TYPE_AND_ENUM(qint8, DT_QINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:374:1: error: DataType does not name a type; did you mean DataTypeSet? + 374 | MATCH_TYPE_AND_ENUM(qint8, DT_QINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:374:1: error: DataType does not name a type; did you mean DataTypeSet? + 374 | MATCH_TYPE_AND_ENUM(qint8, DT_QINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:374:1: error: DT_QINT8 was not declared in this scope + 374 | MATCH_TYPE_AND_ENUM(qint8, DT_QINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:374:1: error: template argument 1 is invalid + 374 | MATCH_TYPE_AND_ENUM(qint8, DT_QINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:375:1: error: DataType does not name a type; did you mean DataTypeSet? + 375 | MATCH_TYPE_AND_ENUM(quint8, DT_QUINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:375:1: error: DataType does not name a type; did you mean DataTypeSet? + 375 | MATCH_TYPE_AND_ENUM(quint8, DT_QUINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:375:1: error: DataType does not name a type; did you mean DataTypeSet? + 375 | MATCH_TYPE_AND_ENUM(quint8, DT_QUINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:375:1: error: DT_QUINT8 was not declared in this scope + 375 | MATCH_TYPE_AND_ENUM(quint8, DT_QUINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:375:1: error: template argument 1 is invalid + 375 | MATCH_TYPE_AND_ENUM(quint8, DT_QUINT8); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:376:1: error: DataType does not name a type; did you mean DataTypeSet? + 376 | MATCH_TYPE_AND_ENUM(qint16, DT_QINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:376:1: error: DataType does not name a type; did you mean DataTypeSet? + 376 | MATCH_TYPE_AND_ENUM(qint16, DT_QINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:376:1: error: DataType does not name a type; did you mean DataTypeSet? + 376 | MATCH_TYPE_AND_ENUM(qint16, DT_QINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:376:1: error: DT_QINT16 was not declared in this scope + 376 | MATCH_TYPE_AND_ENUM(qint16, DT_QINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:376:1: error: template argument 1 is invalid + 376 | MATCH_TYPE_AND_ENUM(qint16, DT_QINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:377:1: error: DataType does not name a type; did you mean DataTypeSet? + 377 | MATCH_TYPE_AND_ENUM(quint16, DT_QUINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:377:1: error: DataType does not name a type; did you mean DataTypeSet? + 377 | MATCH_TYPE_AND_ENUM(quint16, DT_QUINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:377:1: error: DataType does not name a type; did you mean DataTypeSet? + 377 | MATCH_TYPE_AND_ENUM(quint16, DT_QUINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:377:1: error: DT_QUINT16 was not declared in this scope + 377 | MATCH_TYPE_AND_ENUM(quint16, DT_QUINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:377:1: error: template argument 1 is invalid + 377 | MATCH_TYPE_AND_ENUM(quint16, DT_QUINT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:378:1: error: DataType does not name a type; did you mean DataTypeSet? + 378 | MATCH_TYPE_AND_ENUM(qint32, DT_QINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:378:1: error: DataType does not name a type; did you mean DataTypeSet? + 378 | MATCH_TYPE_AND_ENUM(qint32, DT_QINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:378:1: error: DataType does not name a type; did you mean DataTypeSet? + 378 | MATCH_TYPE_AND_ENUM(qint32, DT_QINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:378:1: error: DT_QINT32 was not declared in this scope + 378 | MATCH_TYPE_AND_ENUM(qint32, DT_QINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:378:1: error: template argument 1 is invalid + 378 | MATCH_TYPE_AND_ENUM(qint32, DT_QINT32); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:379:1: error: DataType does not name a type; did you mean DataTypeSet? + 379 | MATCH_TYPE_AND_ENUM(bfloat16, DT_BFLOAT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:379:1: error: DataType does not name a type; did you mean DataTypeSet? + 379 | MATCH_TYPE_AND_ENUM(bfloat16, DT_BFLOAT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:379:1: error: DataType does not name a type; did you mean DataTypeSet? + 379 | MATCH_TYPE_AND_ENUM(bfloat16, DT_BFLOAT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:379:1: error: DT_BFLOAT16 was not declared in this scope + 379 | MATCH_TYPE_AND_ENUM(bfloat16, DT_BFLOAT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:379:1: error: template argument 1 is invalid + 379 | MATCH_TYPE_AND_ENUM(bfloat16, DT_BFLOAT16); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:380:1: error: DataType does not name a type; did you mean DataTypeSet? + 380 | MATCH_TYPE_AND_ENUM(Eigen::half, DT_HALF); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:380:1: error: DataType does not name a type; did you mean DataTypeSet? + 380 | MATCH_TYPE_AND_ENUM(Eigen::half, DT_HALF); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:380:1: error: DataType does not name a type; did you mean DataTypeSet? + 380 | MATCH_TYPE_AND_ENUM(Eigen::half, DT_HALF); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:380:1: error: DT_HALF was not declared in this scope + 380 | MATCH_TYPE_AND_ENUM(Eigen::half, DT_HALF); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:380:1: error: template argument 1 is invalid + 380 | MATCH_TYPE_AND_ENUM(Eigen::half, DT_HALF); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:381:1: error: DataType does not name a type; did you mean DataTypeSet? + 381 | MATCH_TYPE_AND_ENUM(float8_e5m2, DT_FLOAT8_E5M2); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:381:1: error: DataType does not name a type; did you mean DataTypeSet? + 381 | MATCH_TYPE_AND_ENUM(float8_e5m2, DT_FLOAT8_E5M2); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:381:1: error: DataType does not name a type; did you mean DataTypeSet? + 381 | MATCH_TYPE_AND_ENUM(float8_e5m2, DT_FLOAT8_E5M2); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:381:1: error: DT_FLOAT8_E5M2 was not declared in this scope + 381 | MATCH_TYPE_AND_ENUM(float8_e5m2, DT_FLOAT8_E5M2); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:381:1: error: template argument 1 is invalid + 381 | MATCH_TYPE_AND_ENUM(float8_e5m2, DT_FLOAT8_E5M2); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:382:1: error: DataType does not name a type; did you mean DataTypeSet? + 382 | MATCH_TYPE_AND_ENUM(float8_e4m3fn, DT_FLOAT8_E4M3FN); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:382:1: error: DataType does not name a type; did you mean DataTypeSet? + 382 | MATCH_TYPE_AND_ENUM(float8_e4m3fn, DT_FLOAT8_E4M3FN); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:382:1: error: DataType does not name a type; did you mean DataTypeSet? + 382 | MATCH_TYPE_AND_ENUM(float8_e4m3fn, DT_FLOAT8_E4M3FN); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:382:1: error: DT_FLOAT8_E4M3FN was not declared in this scope + 382 | MATCH_TYPE_AND_ENUM(float8_e4m3fn, DT_FLOAT8_E4M3FN); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:382:1: error: template argument 1 is invalid + 382 | MATCH_TYPE_AND_ENUM(float8_e4m3fn, DT_FLOAT8_E4M3FN); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:383:1: error: DataType does not name a type; did you mean DataTypeSet? + 383 | MATCH_TYPE_AND_ENUM(int4, DT_INT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:383:1: error: DataType does not name a type; did you mean DataTypeSet? + 383 | MATCH_TYPE_AND_ENUM(int4, DT_INT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:383:1: error: DataType does not name a type; did you mean DataTypeSet? + 383 | MATCH_TYPE_AND_ENUM(int4, DT_INT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:383:1: error: DT_INT4 was not declared in this scope + 383 | MATCH_TYPE_AND_ENUM(int4, DT_INT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:383:1: error: template argument 1 is invalid + 383 | MATCH_TYPE_AND_ENUM(int4, DT_INT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:384:1: error: DataType does not name a type; did you mean DataTypeSet? + 384 | MATCH_TYPE_AND_ENUM(uint4, DT_UINT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:384:1: error: DataType does not name a type; did you mean DataTypeSet? + 384 | MATCH_TYPE_AND_ENUM(uint4, DT_UINT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:384:1: error: DataType does not name a type; did you mean DataTypeSet? + 384 | MATCH_TYPE_AND_ENUM(uint4, DT_UINT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:384:1: error: DT_UINT4 was not declared in this scope + 384 | MATCH_TYPE_AND_ENUM(uint4, DT_UINT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:384:1: error: template argument 1 is invalid + 384 | MATCH_TYPE_AND_ENUM(uint4, DT_UINT4); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:385:1: error: DataType does not name a type; did you mean DataTypeSet? + 385 | MATCH_TYPE_AND_ENUM(ResourceHandle, DT_RESOURCE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:385:1: error: DataType does not name a type; did you mean DataTypeSet? + 385 | MATCH_TYPE_AND_ENUM(ResourceHandle, DT_RESOURCE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:385:1: error: DataType does not name a type; did you mean DataTypeSet? + 385 | MATCH_TYPE_AND_ENUM(ResourceHandle, DT_RESOURCE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:385:1: error: DT_RESOURCE was not declared in this scope + 385 | MATCH_TYPE_AND_ENUM(ResourceHandle, DT_RESOURCE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:385:1: error: template argument 1 is invalid + 385 | MATCH_TYPE_AND_ENUM(ResourceHandle, DT_RESOURCE); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:386:1: error: DataType does not name a type; did you mean DataTypeSet? + 386 | MATCH_TYPE_AND_ENUM(Variant, DT_VARIANT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:386:1: error: DataType does not name a type; did you mean DataTypeSet? + 386 | MATCH_TYPE_AND_ENUM(Variant, DT_VARIANT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:386:1: error: DataType does not name a type; did you mean DataTypeSet? + 386 | MATCH_TYPE_AND_ENUM(Variant, DT_VARIANT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:386:1: error: DT_VARIANT was not declared in this scope + 386 | MATCH_TYPE_AND_ENUM(Variant, DT_VARIANT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:386:1: error: template argument 1 is invalid + 386 | MATCH_TYPE_AND_ENUM(Variant, DT_VARIANT); + | ^~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:390:10: error: DataType does not name a type; did you mean DataTypeSet? + 390 | static DataType v() { return value; } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:391:10: error: DataType does not name a type; did you mean DataTypeSet? + 391 | static DataType ref() { return MakeRefType(value); } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:392:20: error: DataType does not name a type; did you mean DataTypeSet? + 392 | static constexpr DataType value = sizeof(long) == 4 ? DT_INT32 : DT_INT64; + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:399:23: error: DT_INT64 was not declared in this scope + 399 | struct EnumToDataType { + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:399:31: error: template argument 1 is invalid + 399 | struct EnumToDataType { + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:405:10: error: DataType does not name a type; did you mean DataTypeSet? + 405 | static DataType v() { return value; } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:406:10: error: DataType does not name a type; did you mean DataTypeSet? + 406 | static DataType ref() { return MakeRefType(value); } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:407:20: error: DataType does not name a type; did you mean DataTypeSet? + 407 | static constexpr DataType value = + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:415:23: error: DT_UINT64 was not declared in this scope + 415 | struct EnumToDataType { + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:415:32: error: template argument 1 is invalid + 415 | struct EnumToDataType { + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:421:10: error: DataType does not name a type; did you mean DataTypeSet? + 421 | static DataType v() { return DT_INT64; } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:422:10: error: DataType does not name a type; did you mean DataTypeSet? + 422 | static DataType ref() { return MakeRefType(DT_INT64); } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:423:20: error: DataType does not name a type; did you mean DataTypeSet? + 423 | static constexpr DataType value = DT_INT64; + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:432:10: error: DataType does not name a type; did you mean DataTypeSet? + 432 | static DataType v() { return DT_UINT64; } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:433:10: error: DataType does not name a type; did you mean DataTypeSet? + 433 | static DataType ref() { return MakeRefType(DT_UINT64); } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:434:20: error: DataType does not name a type; did you mean DataTypeSet? + 434 | static constexpr DataType value = DT_UINT64; + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:456:11: error: DT_FLOAT was not declared in this scope + 456 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_UINT32) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:456:29: error: DT_DOUBLE was not declared in this scope + 456 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_UINT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:456:48: error: DT_INT32 was not declared in this scope + 456 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_UINT32) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:456:66: error: DT_UINT32 was not declared in this scope + 456 | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | ToSet(DT_INT32) | ToSet(DT_UINT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:457:11: error: DT_UINT8 was not declared in this scope + 457 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:457:29: error: DT_UINT16 was not declared in this scope + 457 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:457:48: error: DT_INT16 was not declared in this scope + 457 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:457:66: error: DT_INT8 was not declared in this scope + 457 | ToSet(DT_UINT8) | ToSet(DT_UINT16) | ToSet(DT_INT16) | ToSet(DT_INT8) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:458:11: error: DT_COMPLEX64 was not declared in this scope + 458 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128) | ToSet(DT_INT64) | + | ^~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:458:33: error: DT_COMPLEX128 was not declared in this scope + 458 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128) | ToSet(DT_INT64) | + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:458:56: error: DT_INT64 was not declared in this scope + 458 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128) | ToSet(DT_INT64) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:459:11: error: DT_UINT64 was not declared in this scope + 459 | ToSet(DT_UINT64) | ToSet(DT_BOOL) | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:459:30: error: DT_BOOL was not declared in this scope + 459 | ToSet(DT_UINT64) | ToSet(DT_BOOL) | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:459:47: error: DT_QINT8 was not declared in this scope + 459 | ToSet(DT_UINT64) | ToSet(DT_BOOL) | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:459:65: error: DT_QUINT8 was not declared in this scope + 459 | ToSet(DT_UINT64) | ToSet(DT_BOOL) | ToSet(DT_QINT8) | ToSet(DT_QUINT8) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:460:11: error: DT_QINT16 was not declared in this scope + 460 | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:460:30: error: DT_QUINT16 was not declared in this scope + 460 | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:460:50: error: DT_QINT32 was not declared in this scope + 460 | ToSet(DT_QINT16) | ToSet(DT_QUINT16) | ToSet(DT_QINT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:461:11: error: DT_BFLOAT16 was not declared in this scope + 461 | ToSet(DT_BFLOAT16) | ToSet(DT_HALF) | ToSet(DT_FLOAT8_E5M2) | + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:461:32: error: DT_HALF was not declared in this scope + 461 | ToSet(DT_BFLOAT16) | ToSet(DT_HALF) | ToSet(DT_FLOAT8_E5M2) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:461:49: error: DT_FLOAT8_E5M2 was not declared in this scope + 461 | ToSet(DT_BFLOAT16) | ToSet(DT_HALF) | ToSet(DT_FLOAT8_E5M2) | + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:462:11: error: DT_FLOAT8_E4M3FN was not declared in this scope + 462 | ToSet(DT_FLOAT8_E4M3FN) | ToSet(DT_INT4) | ToSet(DT_UINT4); + | ^~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:462:37: error: DT_INT4 was not declared in this scope + 462 | ToSet(DT_FLOAT8_E4M3FN) | ToSet(DT_INT4) | ToSet(DT_UINT4); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:462:54: error: DT_UINT4 was not declared in this scope + 462 | ToSet(DT_FLOAT8_E4M3FN) | ToSet(DT_INT4) | ToSet(DT_UINT4); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:463:34: error: DataType was not declared in this scope; did you mean DataTypeSet? + 463 | inline bool DataTypeCanUseMemcpy(DataType dt) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:469:11: error: DT_HALF was not declared in this scope + 469 | ToSet(DT_HALF) | ToSet(DT_BFLOAT16) | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:469:28: error: DT_BFLOAT16 was not declared in this scope + 469 | ToSet(DT_HALF) | ToSet(DT_BFLOAT16) | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:469:49: error: DT_FLOAT was not declared in this scope + 469 | ToSet(DT_HALF) | ToSet(DT_BFLOAT16) | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:469:67: error: DT_DOUBLE was not declared in this scope + 469 | ToSet(DT_HALF) | ToSet(DT_BFLOAT16) | ToSet(DT_FLOAT) | ToSet(DT_DOUBLE) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:470:11: error: DT_FLOAT8_E4M3FN was not declared in this scope + 470 | ToSet(DT_FLOAT8_E4M3FN) | ToSet(DT_FLOAT8_E5M2); + | ^~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:470:37: error: DT_FLOAT8_E5M2 was not declared in this scope + 470 | ToSet(DT_FLOAT8_E4M3FN) | ToSet(DT_FLOAT8_E5M2); + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:471:32: error: DataType was not declared in this scope; did you mean DataTypeSet? + 471 | inline bool DataTypeIsFloating(DataType dt) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:476:31: error: DataType was not declared in this scope; did you mean DataTypeSet? + 476 | inline bool DataTypeIsNumeric(DataType dt) { return kNumberTypes.Contains(dt); } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:480:11: error: DT_COMPLEX64 was not declared in this scope + 480 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128); + | ^~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:480:33: error: DT_COMPLEX128 was not declared in this scope + 480 | ToSet(DT_COMPLEX64) | ToSet(DT_COMPLEX128); + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:481:31: error: DataType was not declared in this scope; did you mean DataTypeSet? + 481 | inline bool DataTypeIsComplex(DataType dt) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:485:33: error: DataType was not declared in this scope; did you mean DataTypeSet? + 485 | inline bool DataTypeIsQuantized(DataType dt) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:491:11: error: DT_INT4 was not declared in this scope + 491 | ToSet(DT_INT4) | ToSet(DT_UINT4) | ToSet(DT_INT8) | ToSet(DT_UINT8) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:491:28: error: DT_UINT4 was not declared in this scope + 491 | ToSet(DT_INT4) | ToSet(DT_UINT4) | ToSet(DT_INT8) | ToSet(DT_UINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:491:46: error: DT_INT8 was not declared in this scope + 491 | ToSet(DT_INT4) | ToSet(DT_UINT4) | ToSet(DT_INT8) | ToSet(DT_UINT8) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:491:63: error: DT_UINT8 was not declared in this scope + 491 | ToSet(DT_INT4) | ToSet(DT_UINT4) | ToSet(DT_INT8) | ToSet(DT_UINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:492:11: error: DT_INT16 was not declared in this scope + 492 | ToSet(DT_INT16) | ToSet(DT_UINT16) | ToSet(DT_INT32) | ToSet(DT_UINT32) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:492:29: error: DT_UINT16 was not declared in this scope + 492 | ToSet(DT_INT16) | ToSet(DT_UINT16) | ToSet(DT_INT32) | ToSet(DT_UINT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:492:48: error: DT_INT32 was not declared in this scope + 492 | ToSet(DT_INT16) | ToSet(DT_UINT16) | ToSet(DT_INT32) | ToSet(DT_UINT32) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:492:66: error: DT_UINT32 was not declared in this scope + 492 | ToSet(DT_INT16) | ToSet(DT_UINT16) | ToSet(DT_INT32) | ToSet(DT_UINT32) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:493:11: error: DT_INT64 was not declared in this scope + 493 | ToSet(DT_INT64) | ToSet(DT_UINT64); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:493:29: error: DT_UINT64 was not declared in this scope + 493 | ToSet(DT_INT64) | ToSet(DT_UINT64); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:494:31: error: DataType was not declared in this scope; did you mean DataTypeSet? + 494 | inline bool DataTypeIsInteger(DataType dt) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:499:49: error: DT_INT4 was not declared in this scope + 499 | constexpr DataTypeSet kDataTypeIsSigned = ToSet(DT_INT4) | ToSet(DT_INT8) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:499:66: error: DT_INT8 was not declared in this scope + 499 | constexpr DataTypeSet kDataTypeIsSigned = ToSet(DT_INT4) | ToSet(DT_INT8) | + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:500:49: error: DT_INT16 was not declared in this scope + 500 | ToSet(DT_INT16) | ToSet(DT_INT32) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:500:67: error: DT_INT32 was not declared in this scope + 500 | ToSet(DT_INT16) | ToSet(DT_INT32) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:501:49: error: DT_INT64 was not declared in this scope + 501 | ToSet(DT_INT64); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:502:30: error: DataType was not declared in this scope; did you mean DataTypeSet? + 502 | inline bool DataTypeIsSigned(DataType dt) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:507:51: error: DT_UINT4 was not declared in this scope + 507 | constexpr DataTypeSet kDataTypeIsUnsigned = ToSet(DT_UINT4) | ToSet(DT_UINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:507:69: error: DT_UINT8 was not declared in this scope + 507 | constexpr DataTypeSet kDataTypeIsUnsigned = ToSet(DT_UINT4) | ToSet(DT_UINT8) | + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:508:51: error: DT_UINT16 was not declared in this scope + 508 | ToSet(DT_UINT16) | + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:509:51: error: DT_UINT32 was not declared in this scope + 509 | ToSet(DT_UINT32) | ToSet(DT_UINT64); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:509:70: error: DT_UINT64 was not declared in this scope + 509 | ToSet(DT_UINT32) | ToSet(DT_UINT64); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:510:32: error: DataType was not declared in this scope; did you mean DataTypeSet? + 510 | inline bool DataTypeIsUnsigned(DataType dt) { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:515:18: error: DataType was not declared in this scope; did you mean DataTypeSet? + 515 | int DataTypeSize(DataType dt); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:519:33: error: DataType does not name a type; did you mean DataTypeSet? + 519 | MemoryType MTypeFromDType(const DataType dtype); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:525:45: error: DataType does not name a type; did you mean DataTypeSet? + 525 | MemoryType MTypeFromDTypeIntsOnDevice(const DataType dtype); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:530:27: error: DataType was not declared in this scope; did you mean DataTypeSet? + 530 | bool DataTypeAlwaysOnHost(DataType dt); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h: In member function bool tensorflow::TypeRef::operator==(const tensorflow::TypeRef&) const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:542:21: error: invalid use of incomplete type using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 542 | return full_type->SerializeAsString() == + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:543:27: error: invalid use of incomplete type using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 543 | other.full_type->SerializeAsString(); + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h: In member function bool tensorflow::TypeRef::operator<(const tensorflow::TypeRef&) const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:546:21: error: invalid use of incomplete type using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 546 | return full_type->SerializeAsString() < + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:547:27: error: invalid use of incomplete type using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 547 | other.full_type->SerializeAsString(); + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h: In member function std::size_t tensorflow::TypeHasher::operator()(const tensorflow::TypeRef&) const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:553:48: error: invalid use of incomplete type using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 553 | return std::hash()(k.full_type->SerializeAsString()); + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of using element_type = class tensorflow::FullTypeDef {aka class tensorflow::FullTypeDef} + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:559:32: error: DataType does not name a type; did you mean DataTypeSet? + 559 | void map_dtype_to_tensor(const DataType& dtype, FullTypeDef& t); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/types.h:564:41: error: DataType does not name a type; did you mean DataTypeSet? + 564 | void map_dtype_to_child_of_tensor(const DataType& dtype, FullTypeDef& t); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_builder.h:75:9: error: field op_def has incomplete type tensorflow::OpDef + 75 | OpDef op_def; + | ^~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:52:7: note: forward declaration of class tensorflow::OpDef + 52 | class OpDef; + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:56:24: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 56 | TypeInferenceFn Tensor(FullTypeId t); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:74:24: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 74 | TypeInferenceFn Encode(FullTypeId t, int i); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:74:38: error: expected primary-expression before int + 74 | TypeInferenceFn Encode(FullTypeId t, int i); + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:78:24: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 78 | TypeInferenceFn Decode(FullTypeId t, int i); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:78:38: error: expected primary-expression before int + 78 | TypeInferenceFn Decode(FullTypeId t, int i); + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:85:38: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 85 | TypeInferenceFn UnaryContainerCreate(FullTypeId t, int element_idx); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:85:52: error: expected primary-expression before int + 85 | TypeInferenceFn UnaryContainerCreate(FullTypeId t, int element_idx); + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:94:35: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 94 | TypeInferenceFn UnaryContainerAdd(FullTypeId t, int container_idx, + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:94:49: error: expected primary-expression before int + 94 | TypeInferenceFn UnaryContainerAdd(FullTypeId t, int container_idx, + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:95:35: error: expected primary-expression before int + 95 | int element_idx, bool homogeneous); + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:95:52: error: expected primary-expression before bool + 95 | int element_idx, bool homogeneous); + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:104:5: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 104 | FullTypeId t, std::function unstack); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:104:66: error: expected primary-expression before unstack + 104 | FullTypeId t, std::function unstack); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:113:5: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 113 | FullTypeId t, int input_idx, + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:113:19: error: expected primary-expression before int + 113 | FullTypeId t, int input_idx, + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:114:52: error: expected primary-expression before map + 114 | std::function map); + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:120:30: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 120 | TypeInferenceFn MapCovariant(FullTypeId t, FullTypeId u, int input_idx); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:120:44: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 120 | TypeInferenceFn MapCovariant(FullTypeId t, FullTypeId u, int input_idx); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_inference_util.h:120:58: error: expected primary-expression before int + 120 | TypeInferenceFn MapCovariant(FullTypeId t, FullTypeId u, int input_idx); + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:41:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 41 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:45:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 45 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:51:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 51 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fnode_5fdef_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:63:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 63 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:65:54: error: Arena has not been declared + 65 | template<> ::tensorflow::NodeDef_AttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::NodeDef_AttrEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:65:79: error: expected initializer before < token + 65 | template<> ::tensorflow::NodeDef_AttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::NodeDef_AttrEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:66:57: error: Arena has not been declared + 66 | template<> ::tensorflow::NodeDef_ExperimentalDebugInfo* Arena::CreateMaybeMessage<::tensorflow::NodeDef_ExperimentalDebugInfo>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:66:82: error: expected initializer before < token + 66 | template<> ::tensorflow::NodeDef_ExperimentalDebugInfo* Arena::CreateMaybeMessage<::tensorflow::NodeDef_ExperimentalDebugInfo>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:67:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 67 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value_util.h:24, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:23, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:24: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:135:18: error: expected ) before type + 135 | Tensor(DataType type, const TensorShape& shape); + | ~ ^~~~~ + | ) + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:146:24: error: DataType has not been declared + 146 | Tensor(Allocator* a, DataType type, const TensorShape& shape); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:159:24: error: DataType has not been declared + 159 | Tensor(Allocator* a, DataType type, const TensorShape& shape, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:165:18: error: expected ) before type + 165 | Tensor(DataType type, const TensorShape& shape, TensorBuffer* buf); + | ~ ^~~~~ + | ) + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:170:18: error: expected ) before type + 170 | Tensor(DataType type, TensorShape shape, core::RefCountPtr buf); + | ~ ^~~~~ + | ) + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:177:27: error: expected ) before type + 177 | explicit Tensor(DataType type); + | ~ ^~~~~ + | ) + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:185:29: error: DataType has not been declared + 185 | static Status BuildTensor(DataType type, const TensorShape& shape, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:279:3: error: DataType does not name a type; did you mean DataTypeSet? + 279 | DataType dtype() const { return shape_.data_type(); } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:657:43: error: DataType has not been declared + 657 | Status BitcastFrom(const Tensor& other, DataType dtype, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:663:52: error: DataType has not been declared + 663 | void UnsafeCopyFromInternal(const Tensor& other, DataType dtype, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:680:18: error: DataType has not been declared + 680 | void CheckType(DataType expected_dtype) const; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:681:30: error: DataType has not been declared + 681 | void CheckTypeAndIsAligned(DataType expected_dtype) const; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:683:18: error: DataType has not been declared + 683 | void set_dtype(DataType t) { shape_.set_data_type(t); } + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h: In member function bool tensorflow::Tensor::IsAligned() const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:321:12: error: dtype was not declared in this scope; did you mean wctype? + 321 | return dtype() == DT_STRING || NumElements() == 0 || + | ^~~~~ + | wctype + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:321:23: error: DT_STRING was not declared in this scope + 321 | return dtype() == DT_STRING || NumElements() == 0 || + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h: In member function void tensorflow::Tensor::set_shape(const tensorflow::TensorShape&): + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:726:5: error: DataType was not declared in this scope; did you mean DataTypeSet? + 726 | DataType dt = dtype(); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:728:15: error: dt was not declared in this scope; did you mean data? + 728 | set_dtype(dt); + | ^~ + | data + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h: In member function void tensorflow::Tensor::CopyFromInternal(const tensorflow::Tensor&, const tensorflow::TensorShape&): + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:735:5: error: DataType was not declared in this scope; did you mean DataTypeSet? + 735 | DataType other_dtype = other.dtype(); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:737:15: error: other_dtype was not declared in this scope; did you mean set_dtype? + 737 | set_dtype(other_dtype); + | ^~~~~~~~~~~ + | set_dtype + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/logging.h:26, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/platform/refcount.h:23, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/platform/refcount.h:20, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/lib/core/refcount.h:19, + from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/resource_base.h:23: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h: In member function typename tensorflow::TTypes::Tensor tensorflow::Tensor::reinterpret_last_dimension(): + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:805:3: error: there are no arguments to dtype that depend on a template parameter, so a declaration of dtype must be available [-fpermissive] + 805 | CHECK_EQ(static_cast(sizeof(T)), + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:805:3: note: (if you use -fpermissive, G++ will accept your code, but allowing the use of an undeclared name is deprecated) + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h: In member function typename tensorflow::TTypes::ConstTensor tensorflow::Tensor::reinterpret_last_dimension() const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:822:3: error: there are no arguments to dtype that depend on a template parameter, so a declaration of dtype must be available [-fpermissive] + 822 | CHECK_EQ(static_cast(sizeof(T)), + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h: In member function void tensorflow::Tensor::FillDimsAndValidateCompatibleShape(tensorflow::gtl::ArraySlice, Eigen::array*) const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor.h:854:50: error: there are no arguments to dtype that depend on a template parameter, so a declaration of dtype must be available [-fpermissive] + 854 | const int element_size = DataTypeSize(BaseType(dtype())); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value_util.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value_util.h:69:6: error: variable or field SetAttrValue declared void + 69 | void SetAttrValue(DataType value, AttrValue* out); + | ^~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value_util.h:69:19: error: DataType was not declared in this scope; did you mean DataTypeSet? + 69 | void SetAttrValue(DataType value, AttrValue* out); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value_util.h:69:44: error: expected primary-expression before * token + 69 | void SetAttrValue(DataType value, AttrValue* out); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/attr_value_util.h:69:46: error: out was not declared in this scope + 69 | void SetAttrValue(DataType value, AttrValue* out); + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:97:36: error: DataType has not been declared + 97 | void AddNodeAttr(StringPiece name, DataType value, NodeDef* node_def); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:120:52: error: DataType was not declared in this scope; did you mean DataTypeSet? + 120 | void AddNodeAttr(StringPiece name, gtl::ArraySlice value, + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:120:60: error: template argument 1 is invalid + 120 | void AddNodeAttr(StringPiece name, gtl::ArraySlice value, + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h: In member function const tensorflow::AttrValueMap* tensorflow::AttrSlice::attrs() const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:196:37: error: invalid use of incomplete type const class tensorflow::NodeDef + 196 | return ndef_ != nullptr ? &ndef_->attr() : attrs_; + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:53:7: note: forward declaration of class tensorflow::NodeDef + 53 | class NodeDef; + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:224:20: error: DataType has not been declared + 224 | DataType* value); // type: "type" + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:246:32: error: DataType was not declared in this scope; did you mean DataTypeSet? + 246 | std::vector* value); // type "list(type)" + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:246:40: error: template argument 1 is invalid + 246 | std::vector* value); // type "list(type)" + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:246:40: error: template argument 2 is invalid + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:302:21: error: DataType has not been declared + 302 | DataType* value); // type: "type" + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:317:33: error: DataType was not declared in this scope; did you mean DataTypeSet? + 317 | std::vector* value); // type: "list(type)" + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:317:41: error: template argument 1 is invalid + 317 | std::vector* value); // type: "list(type)" + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:317:41: error: template argument 2 is invalid + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:343:41: error: DataType has not been declared + 343 | int input_port, DataType* input_type); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:351:43: error: DataType has not been declared + 351 | int output_port, DataType* output_type); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:376:61: error: incomplete type tensorflow::OpDef used in nested name specifier + 376 | const protobuf::RepeatedPtrField& args, + | ^~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def_util.h:376:67: error: template argument 1 is invalid + 376 | const protobuf::RepeatedPtrField& args, + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:52:27: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 52 | OpTypeConstructor Nullary(FullTypeId t); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:55:25: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 55 | OpTypeConstructor Unary(FullTypeId t, const string& var_name); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:55:39: error: expected primary-expression before const + 55 | OpTypeConstructor Unary(FullTypeId t, const string& var_name); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:58:32: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 58 | OpTypeConstructor UnaryGeneric(FullTypeId t); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:61:40: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 61 | OpTypeConstructor UnaryTensorContainer(FullTypeId t, FullTypeId dtype); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:61:54: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 61 | OpTypeConstructor UnaryTensorContainer(FullTypeId t, FullTypeId dtype); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:64:19: error: redefinition of tensorflow::OpTypeConstructor tensorflow::full_type::UnaryTensorContainer + 64 | OpTypeConstructor UnaryTensorContainer(FullTypeId t, const string& var_name); + | ^~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:61:19: note: tensorflow::OpTypeConstructor tensorflow::full_type::UnaryTensorContainer previously declared here + 61 | OpTypeConstructor UnaryTensorContainer(FullTypeId t, FullTypeId dtype); + | ^~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:64:40: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 64 | OpTypeConstructor UnaryTensorContainer(FullTypeId t, const string& var_name); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:64:54: error: expected primary-expression before const + 64 | OpTypeConstructor UnaryTensorContainer(FullTypeId t, const string& var_name); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:72:43: error: FullTypeId was not declared in this scope; did you mean FullTypeDef? + 72 | OpTypeConstructor VariadicTensorContainer(FullTypeId t, const string& var_name); + | ^~~~~~~~~~ + | FullTypeDef + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:72:57: error: expected primary-expression before const + 72 | OpTypeConstructor VariadicTensorContainer(FullTypeId t, const string& var_name); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h: In function bool tensorflow::full_type::IsHostMemoryType(const tensorflow::FullTypeDef&): + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:97:11: error: invalid use of incomplete type const class tensorflow::FullTypeDef + 97 | switch (t.type_id()) { + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of class tensorflow::FullTypeDef + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:98:10: error: TFT_TENSOR was not declared in this scope + 98 | case TFT_TENSOR: + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:100:10: error: TFT_ARRAY was not declared in this scope + 100 | case TFT_ARRAY: + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:102:10: error: TFT_DATASET was not declared in this scope + 102 | case TFT_DATASET: + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:104:10: error: TFT_MUTEX_LOCK was not declared in this scope; did you mean EIGEN_MUTEX_LOCK? + 104 | case TFT_MUTEX_LOCK: + | ^~~~~~~~~~~~~~ + | EIGEN_MUTEX_LOCK + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:106:10: error: TFT_RAGGED was not declared in this scope + 106 | case TFT_RAGGED: + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:108:10: error: TFT_STRING was not declared in this scope + 108 | case TFT_STRING: + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:110:10: error: TFT_ITERATOR was not declared in this scope + 110 | case TFT_ITERATOR: + | ^~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:112:10: error: TFT_OPTIONAL was not declared in this scope + 112 | case TFT_OPTIONAL: + | ^~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:114:10: error: TFT_PRODUCT was not declared in this scope + 114 | case TFT_PRODUCT: + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type_util.h:115:27: error: invalid use of incomplete type const class tensorflow::FullTypeDef + 115 | for (int i = 0; i < t.args_size(); i++) { + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of class tensorflow::FullTypeDef + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:38:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 38 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:42:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 42 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:48:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 48 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fapi_5fdef_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:66:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 66 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:68:38: error: Arena has not been declared + 68 | template<> ::tensorflow::ApiDef_Arg* Arena::CreateMaybeMessage<::tensorflow::ApiDef_Arg>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:68:63: error: expected initializer before < token + 68 | template<> ::tensorflow::ApiDef_Arg* Arena::CreateMaybeMessage<::tensorflow::ApiDef_Arg>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:69:39: error: Arena has not been declared + 69 | template<> ::tensorflow::ApiDef_Attr* Arena::CreateMaybeMessage<::tensorflow::ApiDef_Attr>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:69:64: error: expected initializer before < token + 69 | template<> ::tensorflow::ApiDef_Attr* Arena::CreateMaybeMessage<::tensorflow::ApiDef_Attr>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:70:43: error: Arena has not been declared + 70 | template<> ::tensorflow::ApiDef_Endpoint* Arena::CreateMaybeMessage<::tensorflow::ApiDef_Endpoint>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:70:68: error: expected initializer before < token + 70 | template<> ::tensorflow::ApiDef_Endpoint* Arena::CreateMaybeMessage<::tensorflow::ApiDef_Endpoint>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:71:35: error: Arena has not been declared + 71 | template<> ::tensorflow::ApiDefs* Arena::CreateMaybeMessage<::tensorflow::ApiDefs>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:71:60: error: expected initializer before < token + 71 | template<> ::tensorflow::ApiDefs* Arena::CreateMaybeMessage<::tensorflow::ApiDefs>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:72:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 72 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:2356:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 2356 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:2360:14: error: EnumDescriptor does not name a type + 2360 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::ApiDef_Visibility>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:2364:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 2364 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:42:39: error: invalid use of incomplete type class tensorflow::OpDef + 42 | const OpDef::AttrDef& attr); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:52:7: note: forward declaration of class tensorflow::OpDef + 52 | class OpDef; + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:46:14: error: invalid use of incomplete type class tensorflow::OpDef + 46 | const OpDef::AttrDef* FindAttr(StringPiece name, const OpDef& op_def); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:52:7: note: forward declaration of class tensorflow::OpDef + 52 | class OpDef; + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:47:8: error: invalid use of incomplete type class tensorflow::OpDef + 47 | OpDef::AttrDef* FindAttrMutable(StringPiece name, OpDef* op_def); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:52:7: note: forward declaration of class tensorflow::OpDef + 52 | class OpDef; + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:51:14: error: invalid use of incomplete type class tensorflow::OpDef + 51 | const OpDef::ArgDef* FindInputArg(StringPiece name, const OpDef& op_def); + | ^~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:52:7: note: forward declaration of class tensorflow::OpDef + 52 | class OpDef; + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:55:15: error: invalid use of incomplete type class tensorflow::ApiDef + 55 | const ApiDef::Arg* FindInputArg(StringPiece name, const ApiDef& api_def); + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/api_def.pb.h:50:7: note: forward declaration of class tensorflow::ApiDef + 50 | class ApiDef; + | ^~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:87:32: error: invalid use of incomplete type class tensorflow::OpDef + 87 | bool AttrDefEqual(const OpDef::AttrDef& a1, const OpDef::AttrDef& a2); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:52:7: note: forward declaration of class tensorflow::OpDef + 52 | class OpDef; + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:87:58: error: invalid use of incomplete type class tensorflow::OpDef + 87 | bool AttrDefEqual(const OpDef::AttrDef& a1, const OpDef::AttrDef& a2); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:52:7: note: forward declaration of class tensorflow::OpDef + 52 | class OpDef; + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:90:33: error: invalid use of incomplete type class tensorflow::OpDef + 90 | uint64 AttrDefHash(const OpDef::AttrDef& a); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def.pb.h:52:7: note: forward declaration of class tensorflow::OpDef + 52 | class OpDef; + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:94:67: error: incomplete type tensorflow::OpDef used in nested name specifier + 94 | bool RepeatedAttrDefEqual(const protobuf::RepeatedPtrField& a1, + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:94:74: error: template argument 1 is invalid + 94 | bool RepeatedAttrDefEqual(const protobuf::RepeatedPtrField& a1, + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:95:67: error: incomplete type tensorflow::OpDef used in nested name specifier + 95 | const protobuf::RepeatedPtrField& a2); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:95:74: error: template argument 1 is invalid + 95 | const protobuf::RepeatedPtrField& a2); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:98:68: error: incomplete type tensorflow::OpDef used in nested name specifier + 98 | uint64 RepeatedAttrDefHash(const protobuf::RepeatedPtrField& a); + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_def_util.h:98:75: error: template argument 1 is invalid + 98 | uint64 RepeatedAttrDefHash(const protobuf::RepeatedPtrField& a); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:36:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 36 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:40:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 40 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:46:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 46 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fdevice_5fattributes_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:61:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 61 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:63:42: error: Arena has not been declared + 63 | template<> ::tensorflow::DeviceLocality* Arena::CreateMaybeMessage<::tensorflow::DeviceLocality>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:63:67: error: expected initializer before < token + 63 | template<> ::tensorflow::DeviceLocality* Arena::CreateMaybeMessage<::tensorflow::DeviceLocality>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:64:44: error: Arena has not been declared + 64 | template<> ::tensorflow::InterconnectLink* Arena::CreateMaybeMessage<::tensorflow::InterconnectLink>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:64:69: error: expected initializer before < token + 64 | template<> ::tensorflow::InterconnectLink* Arena::CreateMaybeMessage<::tensorflow::InterconnectLink>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:65:38: error: Arena has not been declared + 65 | template<> ::tensorflow::LocalLinks* Arena::CreateMaybeMessage<::tensorflow::LocalLinks>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:65:63: error: expected initializer before < token + 65 | template<> ::tensorflow::LocalLinks* Arena::CreateMaybeMessage<::tensorflow::LocalLinks>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:66:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 66 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_base.h: In member function virtual int tensorflow::DeviceBase::NumaNode() const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_base.h:236:51: error: invalid use of incomplete type const class tensorflow::DeviceAttributes + 236 | virtual int NumaNode() const { return attributes().locality().numa_node(); } + | ~~~~~~~~~~^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h:48:7: note: forward declaration of class tensorflow::DeviceAttributes + 48 | class DeviceAttributes; + | ^~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:42:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 42 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:46:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 46 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:52:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 52 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2ffunction_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:88:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 88 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:90:46: error: Arena has not been declared + 90 | template<> ::tensorflow::FunctionDefLibrary* Arena::CreateMaybeMessage<::tensorflow::FunctionDefLibrary>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:90:71: error: expected initializer before < token + 90 | template<> ::tensorflow::FunctionDefLibrary* Arena::CreateMaybeMessage<::tensorflow::FunctionDefLibrary>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:91:61: error: Arena has not been declared + 91 | template<> ::tensorflow::FunctionDef_ArgAttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ArgAttrEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:91:86: error: expected initializer before < token + 91 | template<> ::tensorflow::FunctionDef_ArgAttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ArgAttrEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:92:48: error: Arena has not been declared + 92 | template<> ::tensorflow::FunctionDef_ArgAttrs* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ArgAttrs>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:92:73: error: expected initializer before < token + 92 | template<> ::tensorflow::FunctionDef_ArgAttrs* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ArgAttrs>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:93:67: error: Arena has not been declared + 93 | template<> ::tensorflow::FunctionDef_ArgAttrs_AttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ArgAttrs_AttrEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:93:92: error: expected initializer before < token + 93 | template<> ::tensorflow::FunctionDef_ArgAttrs_AttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ArgAttrs_AttrEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:94:58: error: Arena has not been declared + 94 | template<> ::tensorflow::FunctionDef_AttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_AttrEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:94:83: error: expected initializer before < token + 94 | template<> ::tensorflow::FunctionDef_AttrEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_AttrEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:95:64: error: Arena has not been declared + 95 | template<> ::tensorflow::FunctionDef_ControlRetEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ControlRetEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:95:89: error: expected initializer before < token + 95 | template<> ::tensorflow::FunctionDef_ControlRetEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ControlRetEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:96:73: error: Arena has not been declared + 96 | template<> ::tensorflow::FunctionDef_ResourceArgUniqueIdEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ResourceArgUniqueIdEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:96:98: error: expected initializer before < token + 96 | template<> ::tensorflow::FunctionDef_ResourceArgUniqueIdEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_ResourceArgUniqueIdEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:97:57: error: Arena has not been declared + 97 | template<> ::tensorflow::FunctionDef_RetEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_RetEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:97:82: error: expected initializer before < token + 97 | template<> ::tensorflow::FunctionDef_RetEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::FunctionDef_RetEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:98:39: error: Arena has not been declared + 98 | template<> ::tensorflow::GradientDef* Arena::CreateMaybeMessage<::tensorflow::GradientDef>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:98:64: error: expected initializer before < token + 98 | template<> ::tensorflow::GradientDef* Arena::CreateMaybeMessage<::tensorflow::GradientDef>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:99:46: error: Arena has not been declared + 99 | template<> ::tensorflow::RegisteredGradient* Arena::CreateMaybeMessage<::tensorflow::RegisteredGradient>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:99:71: error: expected initializer before < token + 99 | template<> ::tensorflow::RegisteredGradient* Arena::CreateMaybeMessage<::tensorflow::RegisteredGradient>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/function.pb.h:100:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 100 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:39:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 39 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:43:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 43 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:49:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 49 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fgraph_5fdebug_5finfo_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:73:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 73 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:75:54: error: Arena has not been declared + 75 | template<> ::tensorflow::GraphDebugInfo_FileLineCol* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_FileLineCol>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:75:79: error: expected initializer before < token + 75 | template<> ::tensorflow::GraphDebugInfo_FileLineCol* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_FileLineCol>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:76:67: error: Arena has not been declared + 76 | template<> ::tensorflow::GraphDebugInfo_FramesByIdEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_FramesByIdEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:76:92: error: expected initializer before < token + 76 | template<> ::tensorflow::GraphDebugInfo_FramesByIdEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_FramesByIdEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:77:70: error: Arena has not been declared + 77 | template<> ::tensorflow::GraphDebugInfo_NameToTraceIdEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_NameToTraceIdEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:77:95: error: expected initializer before < token + 77 | template<> ::tensorflow::GraphDebugInfo_NameToTraceIdEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_NameToTraceIdEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:78:53: error: Arena has not been declared + 78 | template<> ::tensorflow::GraphDebugInfo_StackTrace* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_StackTrace>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:78:78: error: expected initializer before < token + 78 | template<> ::tensorflow::GraphDebugInfo_StackTrace* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_StackTrace>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:79:67: error: Arena has not been declared + 79 | template<> ::tensorflow::GraphDebugInfo_TracesByIdEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_TracesByIdEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:79:92: error: expected initializer before < token + 79 | template<> ::tensorflow::GraphDebugInfo_TracesByIdEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_TracesByIdEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:80:63: error: Arena has not been declared + 80 | template<> ::tensorflow::GraphDebugInfo_TracesEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_TracesEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:80:88: error: expected initializer before < token + 80 | template<> ::tensorflow::GraphDebugInfo_TracesEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::GraphDebugInfo_TracesEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph_debug_info.pb.h:81:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 81 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/versions.pb.h:36:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 36 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/versions.pb.h:40:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 40 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/versions.pb.h:46:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 46 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fversions_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/versions.pb.h:52:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 52 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/versions.pb.h:54:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 54 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:40:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 40 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:44:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 44 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:50:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 50 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fgraph_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:56:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 56 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:58:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 58 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:37:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 37 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:41:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 41 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:47:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 47 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fkernel_5fdef_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:59:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 59 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:61:52: error: Arena has not been declared + 61 | template<> ::tensorflow::KernelDef_AttrConstraint* Arena::CreateMaybeMessage<::tensorflow::KernelDef_AttrConstraint>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:61:77: error: expected initializer before < token + 61 | template<> ::tensorflow::KernelDef_AttrConstraint* Arena::CreateMaybeMessage<::tensorflow::KernelDef_AttrConstraint>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:62:38: error: Arena has not been declared + 62 | template<> ::tensorflow::KernelList* Arena::CreateMaybeMessage<::tensorflow::KernelList>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:62:63: error: expected initializer before < token + 62 | template<> ::tensorflow::KernelList* Arena::CreateMaybeMessage<::tensorflow::KernelList>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h:63:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 63 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:33: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:58:52: error: DataType was not declared in this scope; did you mean DataTypeSet? + 58 | gtl::ArraySlice allowed); + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:58:60: error: template argument 1 is invalid + 58 | gtl::ArraySlice allowed); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:61:59: error: DataType has not been declared + 61 | KernelDefBuilder& TypeConstraint(const char* attr_name, DataType allowed); + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:61:21: error: tensorflow::KernelDefBuilder& tensorflow::KernelDefBuilder::TypeConstraint(const char*, int) cannot be overloaded with tensorflow::KernelDefBuilder& tensorflow::KernelDefBuilder::TypeConstraint(const char*, int) + 61 | KernelDefBuilder& TypeConstraint(const char* attr_name, DataType allowed); + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h:57:21: note: previous declaration tensorflow::KernelDefBuilder& tensorflow::KernelDefBuilder::TypeConstraint(const char*, int) + 57 | KernelDefBuilder& TypeConstraint(const char* attr_name, + | ^~~~~~~~~~~~~~ + In file included from /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:36: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_properties.h:55:11: error: field node_def has incomplete type tensorflow::NodeDef + 55 | NodeDef node_def; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:53:7: note: forward declaration of class tensorflow::NodeDef + 53 | class NodeDef; + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_properties.h:31:47: error: node_def has incomplete type + 31 | NodeProperties(const OpDef* op_def, NodeDef node_def, + | ~~~~~~~~^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_def.pb.h:53:7: note: forward declaration of class tensorflow::NodeDef + 53 | class NodeDef; + | ^~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_properties.h: In constructor tensorflow::NodeProperties::NodeProperties(const tensorflow::OpDef*, tensorflow::NodeDef, tensorflow::DataTypeSlice, tensorflow::DataTypeSlice): + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_properties.h:34:46: error: request for member begin in inputs, which is of non-class type const tensorflow::DataTypeSlice {aka const int} + 34 | DataTypeVector(inputs.begin(), inputs.end()), + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_properties.h:34:62: error: request for member end in inputs, which is of non-class type const tensorflow::DataTypeSlice {aka const int} + 34 | DataTypeVector(inputs.begin(), inputs.end()), + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_properties.h:34:67: error: expression list treated as compound expression in functional cast [-fpermissive] + 34 | DataTypeVector(inputs.begin(), inputs.end()), + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_properties.h:35:47: error: request for member begin in outputs, which is of non-class type const tensorflow::DataTypeSlice {aka const int} + 35 | DataTypeVector(outputs.begin(), outputs.end())) {} + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_properties.h:35:64: error: request for member end in outputs, which is of non-class type const tensorflow::DataTypeSlice {aka const int} + 35 | DataTypeVector(outputs.begin(), outputs.end())) {} + | ^~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/node_properties.h:35:69: error: expression list treated as compound expression in functional cast [-fpermissive] + 35 | DataTypeVector(outputs.begin(), outputs.end())) {} + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:38:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 38 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:42:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 42 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:48:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 48 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fcost_5fgraph_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:66:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 66 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:68:55: error: Arena has not been declared + 68 | template<> ::tensorflow::CostGraphDef_AggregatedCost* Arena::CreateMaybeMessage<::tensorflow::CostGraphDef_AggregatedCost>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:68:80: error: expected initializer before < token + 68 | template<> ::tensorflow::CostGraphDef_AggregatedCost* Arena::CreateMaybeMessage<::tensorflow::CostGraphDef_AggregatedCost>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:69:45: error: Arena has not been declared + 69 | template<> ::tensorflow::CostGraphDef_Node* Arena::CreateMaybeMessage<::tensorflow::CostGraphDef_Node>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:69:70: error: expected initializer before < token + 69 | template<> ::tensorflow::CostGraphDef_Node* Arena::CreateMaybeMessage<::tensorflow::CostGraphDef_Node>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:70:55: error: Arena has not been declared + 70 | template<> ::tensorflow::CostGraphDef_Node_InputInfo* Arena::CreateMaybeMessage<::tensorflow::CostGraphDef_Node_InputInfo>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:70:80: error: expected initializer before < token + 70 | template<> ::tensorflow::CostGraphDef_Node_InputInfo* Arena::CreateMaybeMessage<::tensorflow::CostGraphDef_Node_InputInfo>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:71:56: error: Arena has not been declared + 71 | template<> ::tensorflow::CostGraphDef_Node_OutputInfo* Arena::CreateMaybeMessage<::tensorflow::CostGraphDef_Node_OutputInfo>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:71:81: error: expected initializer before < token + 71 | template<> ::tensorflow::CostGraphDef_Node_OutputInfo* Arena::CreateMaybeMessage<::tensorflow::CostGraphDef_Node_OutputInfo>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h:72:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 72 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h:36:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 36 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h:40:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 40 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h:46:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 46 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fallocation_5fdescription_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h:52:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 52 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h:54:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 54 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h:39:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 39 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h:43:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 43 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h:49:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 49 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2ftensor_5fdescription_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h:55:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 55 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h:57:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 57 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:41:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 41 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:45:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 45 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:51:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 51 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fframework_2fstep_5fstats_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:78:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 78 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:80:47: error: Arena has not been declared + 80 | template<> ::tensorflow::AllocatorMemoryUsed* Arena::CreateMaybeMessage<::tensorflow::AllocatorMemoryUsed>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:80:72: error: expected initializer before < token + 80 | template<> ::tensorflow::AllocatorMemoryUsed* Arena::CreateMaybeMessage<::tensorflow::AllocatorMemoryUsed>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:81:43: error: Arena has not been declared + 81 | template<> ::tensorflow::DeviceStepStats* Arena::CreateMaybeMessage<::tensorflow::DeviceStepStats>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:81:68: error: expected initializer before < token + 81 | template<> ::tensorflow::DeviceStepStats* Arena::CreateMaybeMessage<::tensorflow::DeviceStepStats>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:82:69: error: Arena has not been declared + 82 | template<> ::tensorflow::DeviceStepStats_ThreadNamesEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::DeviceStepStats_ThreadNamesEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:82:94: error: expected initializer before < token + 82 | template<> ::tensorflow::DeviceStepStats_ThreadNamesEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::DeviceStepStats_ThreadNamesEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:83:39: error: Arena has not been declared + 83 | template<> ::tensorflow::MemoryStats* Arena::CreateMaybeMessage<::tensorflow::MemoryStats>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:83:64: error: expected initializer before < token + 83 | template<> ::tensorflow::MemoryStats* Arena::CreateMaybeMessage<::tensorflow::MemoryStats>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:84:41: error: Arena has not been declared + 84 | template<> ::tensorflow::NodeExecStats* Arena::CreateMaybeMessage<::tensorflow::NodeExecStats>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:84:66: error: expected initializer before < token + 84 | template<> ::tensorflow::NodeExecStats* Arena::CreateMaybeMessage<::tensorflow::NodeExecStats>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:85:38: error: Arena has not been declared + 85 | template<> ::tensorflow::NodeOutput* Arena::CreateMaybeMessage<::tensorflow::NodeOutput>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:85:63: error: expected initializer before < token + 85 | template<> ::tensorflow::NodeOutput* Arena::CreateMaybeMessage<::tensorflow::NodeOutput>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:86:37: error: Arena has not been declared + 86 | template<> ::tensorflow::StepStats* Arena::CreateMaybeMessage<::tensorflow::StepStats>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:86:62: error: expected initializer before < token + 86 | template<> ::tensorflow::StepStats* Arena::CreateMaybeMessage<::tensorflow::StepStats>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/step_stats.pb.h:87:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 87 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:39:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 39 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:43:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 43 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:49:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 49 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fprotobuf_2fcluster_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:61:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 61 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:63:34: error: Arena has not been declared + 63 | template<> ::tensorflow::JobDef* Arena::CreateMaybeMessage<::tensorflow::JobDef>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:63:59: error: expected initializer before < token + 63 | template<> ::tensorflow::JobDef* Arena::CreateMaybeMessage<::tensorflow::JobDef>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:64:54: error: Arena has not been declared + 64 | template<> ::tensorflow::JobDef_TasksEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::JobDef_TasksEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:64:79: error: expected initializer before < token + 64 | template<> ::tensorflow::JobDef_TasksEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::JobDef_TasksEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h:65:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 65 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:36:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 36 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:40:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 40 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:46:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 46 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fprotobuf_2fdebug_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:61:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 61 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:63:44: error: Arena has not been declared + 63 | template<> ::tensorflow::DebugTensorWatch* Arena::CreateMaybeMessage<::tensorflow::DebugTensorWatch>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:63:69: error: expected initializer before < token + 63 | template<> ::tensorflow::DebugTensorWatch* Arena::CreateMaybeMessage<::tensorflow::DebugTensorWatch>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:64:46: error: Arena has not been declared + 64 | template<> ::tensorflow::DebuggedSourceFile* Arena::CreateMaybeMessage<::tensorflow::DebuggedSourceFile>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:64:71: error: expected initializer before < token + 64 | template<> ::tensorflow::DebuggedSourceFile* Arena::CreateMaybeMessage<::tensorflow::DebuggedSourceFile>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:65:47: error: Arena has not been declared + 65 | template<> ::tensorflow::DebuggedSourceFiles* Arena::CreateMaybeMessage<::tensorflow::DebuggedSourceFiles>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:65:72: error: expected initializer before < token + 65 | template<> ::tensorflow::DebuggedSourceFiles* Arena::CreateMaybeMessage<::tensorflow::DebuggedSourceFiles>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/debug.pb.h:66:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 66 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:37:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 37 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:41:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 41 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:47:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 47 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fprotobuf_2fverifier_5fconfig_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:53:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 53 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:55:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 55 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:334:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 334 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:338:14: error: EnumDescriptor does not name a type + 338 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::VerifierConfig_Toggle>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/verifier_config.pb.h:342:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 342 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:42:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 42 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:46:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 46 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:52:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 52 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fprotobuf_2frewriter_5fconfig_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:70:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 70 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:72:42: error: Arena has not been declared + 72 | template<> ::tensorflow::RewriterConfig* Arena::CreateMaybeMessage<::tensorflow::RewriterConfig>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:72:67: error: expected initializer before < token + 72 | template<> ::tensorflow::RewriterConfig* Arena::CreateMaybeMessage<::tensorflow::RewriterConfig>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:73:63: error: Arena has not been declared + 73 | template<> ::tensorflow::RewriterConfig_CustomGraphOptimizer* Arena::CreateMaybeMessage<::tensorflow::RewriterConfig_CustomGraphOptimizer>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:73:88: error: expected initializer before < token + 73 | template<> ::tensorflow::RewriterConfig_CustomGraphOptimizer* Arena::CreateMaybeMessage<::tensorflow::RewriterConfig_CustomGraphOptimizer>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:74:90: error: Arena has not been declared + 74 | template<> ::tensorflow::RewriterConfig_CustomGraphOptimizer_ParameterMapEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::RewriterConfig_CustomGraphOptimizer_ParameterMapEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:74:115: error: expected initializer before < token + 74 | template<> ::tensorflow::RewriterConfig_CustomGraphOptimizer_ParameterMapEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::RewriterConfig_CustomGraphOptimizer_ParameterMapEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:75:50: error: Arena has not been declared + 75 | template<> ::tensorflow::ScopedAllocatorOptions* Arena::CreateMaybeMessage<::tensorflow::ScopedAllocatorOptions>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:75:75: error: expected initializer before < token + 75 | template<> ::tensorflow::ScopedAllocatorOptions* Arena::CreateMaybeMessage<::tensorflow::ScopedAllocatorOptions>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:76:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 76 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2817:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 2817 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2821:14: error: EnumDescriptor does not name a type + 2821 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::RewriterConfig_Toggle>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2824:20: error: is_proto_enum is not a class template + 2824 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_CpuLayout> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2824:49: error: RewriterConfig_CpuLayout is not a member of tensorflow + 2824 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_CpuLayout> : ::std::true_type {}; + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2824:94: error: explicit specialization of non-template is_proto_enum + 2824 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_CpuLayout> : ::std::true_type {}; + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2826:14: error: EnumDescriptor does not name a type + 2826 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::RewriterConfig_CpuLayout>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2829:20: error: is_proto_enum is not a class template + 2829 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_NumIterationsType> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2829:49: error: RewriterConfig_NumIterationsType is not a member of tensorflow + 2829 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_NumIterationsType> : ::std::true_type {}; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2829:81: error: is_proto_enum is not a template + 2829 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_NumIterationsType> : ::std::true_type {}; + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2824:20: note: previous declaration here + 2824 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_CpuLayout> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2831:14: error: EnumDescriptor does not name a type + 2831 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::RewriterConfig_NumIterationsType>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2834:20: error: is_proto_enum is not a class template + 2834 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_MemOptType> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2834:49: error: RewriterConfig_MemOptType is not a member of tensorflow + 2834 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_MemOptType> : ::std::true_type {}; + | ^~~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2834:74: error: is_proto_enum is not a template + 2834 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_MemOptType> : ::std::true_type {}; + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2824:20: note: previous declaration here + 2824 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_CpuLayout> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2836:14: error: EnumDescriptor does not name a type + 2836 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::RewriterConfig_MemOptType>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2840:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 2840 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/rpc_options.pb.h:36:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 36 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/rpc_options.pb.h:40:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 40 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/rpc_options.pb.h:46:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 46 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tsl_2fprotobuf_2frpc_5foptions_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/rpc_options.pb.h:52:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 52 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/rpc_options.pb.h:54:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 54 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rpc_options.pb.h:35:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 35 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rpc_options.pb.h:39:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 39 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rpc_options.pb.h:45:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 45 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fprotobuf_2frpc_5foptions_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rpc_options.pb.h:46:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 46 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:36:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 36 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:40:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 40 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:46:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 46 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tsl_2fprotobuf_2fcoordination_5fconfig_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:55:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 55 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:57:53: error: Arena has not been declared + 57 | template<> ::tensorflow::CoordinationServiceConfig* Arena::CreateMaybeMessage<::tensorflow::CoordinationServiceConfig>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:57:78: error: expected initializer before < token + 57 | template<> ::tensorflow::CoordinationServiceConfig* Arena::CreateMaybeMessage<::tensorflow::CoordinationServiceConfig>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tsl/protobuf/coordination_config.pb.h:58:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 58 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:48:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 48 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:52:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 52 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:58:16: error: PROTOBUF_NAMESPACE_ID in namespace :: does not name a type + 58 | extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tensorflow_2fcore_2fprotobuf_2fconfig_2eproto; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:118:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 118 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:120:69: error: Arena has not been declared + 120 | template<> ::tensorflow::CallableOptions_FeedDevicesEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::CallableOptions_FeedDevicesEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:120:94: error: expected initializer before < token + 120 | template<> ::tensorflow::CallableOptions_FeedDevicesEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::CallableOptions_FeedDevicesEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:121:70: error: Arena has not been declared + 121 | template<> ::tensorflow::CallableOptions_FetchDevicesEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::CallableOptions_FetchDevicesEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:121:95: error: expected initializer before < token + 121 | template<> ::tensorflow::CallableOptions_FetchDevicesEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::CallableOptions_FetchDevicesEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:122:39: error: Arena has not been declared + 122 | template<> ::tensorflow::ConfigProto* Arena::CreateMaybeMessage<::tensorflow::ConfigProto>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:122:64: error: expected initializer before < token + 122 | template<> ::tensorflow::ConfigProto* Arena::CreateMaybeMessage<::tensorflow::ConfigProto>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:123:65: error: Arena has not been declared + 123 | template<> ::tensorflow::ConfigProto_DeviceCountEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::ConfigProto_DeviceCountEntry_DoNotUse>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:123:90: error: expected initializer before < token + 123 | template<> ::tensorflow::ConfigProto_DeviceCountEntry_DoNotUse* Arena::CreateMaybeMessage<::tensorflow::ConfigProto_DeviceCountEntry_DoNotUse>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:124:52: error: Arena has not been declared + 124 | template<> ::tensorflow::ConfigProto_Experimental* Arena::CreateMaybeMessage<::tensorflow::ConfigProto_Experimental>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:124:77: error: expected initializer before < token + 124 | template<> ::tensorflow::ConfigProto_Experimental* Arena::CreateMaybeMessage<::tensorflow::ConfigProto_Experimental>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:125:38: error: Arena has not been declared + 125 | template<> ::tensorflow::GPUOptions* Arena::CreateMaybeMessage<::tensorflow::GPUOptions>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:125:63: error: expected initializer before < token + 125 | template<> ::tensorflow::GPUOptions* Arena::CreateMaybeMessage<::tensorflow::GPUOptions>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:126:51: error: Arena has not been declared + 126 | template<> ::tensorflow::GPUOptions_Experimental* Arena::CreateMaybeMessage<::tensorflow::GPUOptions_Experimental>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:126:76: error: expected initializer before < token + 126 | template<> ::tensorflow::GPUOptions_Experimental* Arena::CreateMaybeMessage<::tensorflow::GPUOptions_Experimental>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:127:66: error: Arena has not been declared + 127 | template<> ::tensorflow::GPUOptions_Experimental_VirtualDevices* Arena::CreateMaybeMessage<::tensorflow::GPUOptions_Experimental_VirtualDevices>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:127:91: error: expected initializer before < token + 127 | template<> ::tensorflow::GPUOptions_Experimental_VirtualDevices* Arena::CreateMaybeMessage<::tensorflow::GPUOptions_Experimental_VirtualDevices>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:128:40: error: Arena has not been declared + 128 | template<> ::tensorflow::GraphOptions* Arena::CreateMaybeMessage<::tensorflow::GraphOptions>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:128:65: error: expected initializer before < token + 128 | template<> ::tensorflow::GraphOptions* Arena::CreateMaybeMessage<::tensorflow::GraphOptions>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:129:44: error: Arena has not been declared + 129 | template<> ::tensorflow::OptimizerOptions* Arena::CreateMaybeMessage<::tensorflow::OptimizerOptions>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:129:69: error: expected initializer before < token + 129 | template<> ::tensorflow::OptimizerOptions* Arena::CreateMaybeMessage<::tensorflow::OptimizerOptions>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:130:39: error: Arena has not been declared + 130 | template<> ::tensorflow::RunMetadata* Arena::CreateMaybeMessage<::tensorflow::RunMetadata>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:130:64: error: expected initializer before < token + 130 | template<> ::tensorflow::RunMetadata* Arena::CreateMaybeMessage<::tensorflow::RunMetadata>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:131:54: error: Arena has not been declared + 131 | template<> ::tensorflow::RunMetadata_FunctionGraphs* Arena::CreateMaybeMessage<::tensorflow::RunMetadata_FunctionGraphs>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:131:79: error: expected initializer before < token + 131 | template<> ::tensorflow::RunMetadata_FunctionGraphs* Arena::CreateMaybeMessage<::tensorflow::RunMetadata_FunctionGraphs>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:132:38: error: Arena has not been declared + 132 | template<> ::tensorflow::RunOptions* Arena::CreateMaybeMessage<::tensorflow::RunOptions>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:132:63: error: expected initializer before < token + 132 | template<> ::tensorflow::RunOptions* Arena::CreateMaybeMessage<::tensorflow::RunOptions>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:133:51: error: Arena has not been declared + 133 | template<> ::tensorflow::RunOptions_Experimental* Arena::CreateMaybeMessage<::tensorflow::RunOptions_Experimental>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:133:76: error: expected initializer before < token + 133 | template<> ::tensorflow::RunOptions_Experimental* Arena::CreateMaybeMessage<::tensorflow::RunOptions_Experimental>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:134:73: error: Arena has not been declared + 134 | template<> ::tensorflow::RunOptions_Experimental_RunHandlerPoolOptions* Arena::CreateMaybeMessage<::tensorflow::RunOptions_Experimental_RunHandlerPoolOptions>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:134:98: error: expected initializer before < token + 134 | template<> ::tensorflow::RunOptions_Experimental_RunHandlerPoolOptions* Arena::CreateMaybeMessage<::tensorflow::RunOptions_Experimental_RunHandlerPoolOptions>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:135:43: error: Arena has not been declared + 135 | template<> ::tensorflow::SessionMetadata* Arena::CreateMaybeMessage<::tensorflow::SessionMetadata>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:135:68: error: expected initializer before < token + 135 | template<> ::tensorflow::SessionMetadata* Arena::CreateMaybeMessage<::tensorflow::SessionMetadata>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:136:44: error: Arena has not been declared + 136 | template<> ::tensorflow::TensorConnection* Arena::CreateMaybeMessage<::tensorflow::TensorConnection>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:136:69: error: expected initializer before < token + 136 | template<> ::tensorflow::TensorConnection* Arena::CreateMaybeMessage<::tensorflow::TensorConnection>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:137:49: error: Arena has not been declared + 137 | template<> ::tensorflow::ThreadPoolOptionProto* Arena::CreateMaybeMessage<::tensorflow::ThreadPoolOptionProto>(Arena*); + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:137:74: error: expected initializer before < token + 137 | template<> ::tensorflow::ThreadPoolOptionProto* Arena::CreateMaybeMessage<::tensorflow::ThreadPoolOptionProto>(Arena*); + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:138:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 138 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8757:1: error: PROTOBUF_NAMESPACE_OPEN does not name a type + 8757 | PROTOBUF_NAMESPACE_OPEN + | ^~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8761:14: error: EnumDescriptor does not name a type + 8761 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::OptimizerOptions_Level>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8764:20: error: is_proto_enum is not a class template + 8764 | template <> struct is_proto_enum< ::tensorflow::OptimizerOptions_GlobalJitLevel> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8764:49: error: OptimizerOptions_GlobalJitLevel is not a member of tensorflow + 8764 | template <> struct is_proto_enum< ::tensorflow::OptimizerOptions_GlobalJitLevel> : ::std::true_type {}; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8764:80: error: is_proto_enum is not a template + 8764 | template <> struct is_proto_enum< ::tensorflow::OptimizerOptions_GlobalJitLevel> : ::std::true_type {}; + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2824:20: note: previous declaration here + 2824 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_CpuLayout> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8766:14: error: EnumDescriptor does not name a type + 8766 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::OptimizerOptions_GlobalJitLevel>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8769:20: error: is_proto_enum is not a class template + 8769 | template <> struct is_proto_enum< ::tensorflow::ConfigProto_Experimental_MlirBridgeRollout> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8769:49: error: ConfigProto_Experimental_MlirBridgeRollout is not a member of tensorflow + 8769 | template <> struct is_proto_enum< ::tensorflow::ConfigProto_Experimental_MlirBridgeRollout> : ::std::true_type {}; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8769:91: error: is_proto_enum is not a template + 8769 | template <> struct is_proto_enum< ::tensorflow::ConfigProto_Experimental_MlirBridgeRollout> : ::std::true_type {}; + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2824:20: note: previous declaration here + 2824 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_CpuLayout> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8771:14: error: EnumDescriptor does not name a type + 8771 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::ConfigProto_Experimental_MlirBridgeRollout>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8774:20: error: is_proto_enum is not a class template + 8774 | template <> struct is_proto_enum< ::tensorflow::RunOptions_TraceLevel> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8774:49: error: RunOptions_TraceLevel is not a member of tensorflow + 8774 | template <> struct is_proto_enum< ::tensorflow::RunOptions_TraceLevel> : ::std::true_type {}; + | ^~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8774:70: error: is_proto_enum is not a template + 8774 | template <> struct is_proto_enum< ::tensorflow::RunOptions_TraceLevel> : ::std::true_type {}; + | ^ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h:2824:20: note: previous declaration here + 2824 | template <> struct is_proto_enum< ::tensorflow::RewriterConfig_CpuLayout> : ::std::true_type {}; + | ^~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8776:14: error: EnumDescriptor does not name a type + 8776 | inline const EnumDescriptor* GetEnumDescriptor< ::tensorflow::RunOptions_TraceLevel>() { + | ^~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/protobuf/config.pb.h:8780:1: error: PROTOBUF_NAMESPACE_CLOSE does not name a type + 8780 | PROTOBUF_NAMESPACE_CLOSE + | ^~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:182:3: error: DataType does not name a type; did you mean DataTypeSet? + 182 | DataType input_type(int i) const { return props_->input_types[i]; } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:189:3: error: DataType does not name a type; did you mean DataTypeSet? + 189 | DataType output_type(int o) const { return props_->output_types[o]; } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h: In member function int tensorflow::OpKernel::num_inputs() const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:181:55: error: request for member size in ((const std::__shared_ptr_access*)(&((const tensorflow::OpKernel*)this)->tensorflow::OpKernel::props_))->std::__shared_ptr_access::operator->()->tensorflow::NodeProperties::input_types, which is of non-class type const tensorflow::DataTypeVector {aka const int} + 181 | int num_inputs() const { return props_->input_types.size(); } + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h: In member function int tensorflow::OpKernel::num_outputs() const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:188:57: error: request for member size in ((const std::__shared_ptr_access*)(&((const tensorflow::OpKernel*)this)->tensorflow::OpKernel::props_))->std::__shared_ptr_access::operator->()->tensorflow::NodeProperties::output_types, which is of non-class type const tensorflow::DataTypeVector {aka const int} + 188 | int num_outputs() const { return props_->output_types.size(); } + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:277:24: error: DataType has not been declared + 277 | Status allocate_temp(DataType type, const TensorShape& shape, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:279:24: error: DataType has not been declared + 279 | Status allocate_temp(DataType type, const TensorShape& shape, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:287:3: error: DataType does not name a type; did you mean DataTypeSet? + 287 | DataType input_type(int i) const { return props_->input_types[i]; } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:295:3: error: DataType does not name a type; did you mean DataTypeSet? + 295 | DataType output_type(int i) const { return props_->output_types[i]; } + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h: In member function int tensorflow::OpKernelConstruction::num_inputs() const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:286:55: error: request for member size in ((const std::__shared_ptr_access*)(&((const tensorflow::OpKernelConstruction*)this)->tensorflow::OpKernelConstruction::props_))->std::__shared_ptr_access::operator->()->tensorflow::NodeProperties::input_types, which is of non-class type const tensorflow::DataTypeVector {aka const int} + 286 | int num_inputs() const { return props_->input_types.size(); } + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h: In member function int tensorflow::OpKernelConstruction::num_outputs() const: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:294:57: error: request for member size in ((const std::__shared_ptr_access*)(&((const tensorflow::OpKernelConstruction*)this)->tensorflow::OpKernelConstruction::props_))->std::__shared_ptr_access::operator->()->tensorflow::NodeProperties::output_types, which is of non-class type const tensorflow::DataTypeVector {aka const int} + 294 | int num_outputs() const { return props_->output_types.size(); } + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:473:3: error: DataType does not name a type; did you mean DataTypeSet? + 473 | DataType expected_output_dtype(int i) const; + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:498:3: error: DataType does not name a type; did you mean DataTypeSet? + 498 | DataType dtype() const { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:510:3: error: DataType does not name a type; did you mean DataTypeSet? + 510 | DataType dtype_safe() const { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:527:12: error: field raw_graph has incomplete type tensorflow::GraphDef + 527 | GraphDef raw_graph TF_GUARDED_BY(mu); + | ^~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:52:7: note: forward declaration of class tensorflow::GraphDef + 52 | class GraphDef; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:528:12: error: field optimized_graph has incomplete type tensorflow::GraphDef + 528 | GraphDef optimized_graph TF_GUARDED_BY(mu); + | ^~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/graph.pb.h:52:7: note: forward declaration of class tensorflow::GraphDef + 52 | class GraphDef; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:725:3: error: DataType does not name a type; did you mean DataTypeSet? + 725 | DataType input_dtype(int index) const; + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:726:40: error: DataType has not been declared + 726 | Status input_dtype(StringPiece name, DataType* dtype) const; + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:730:3: error: DataType does not name a type; did you mean DataTypeSet? + 730 | DataType expected_output_dtype(int index) const; + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:891:42: error: DataType has not been declared + 891 | int input_index, int output_index, DataType output_dtype, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:914:53: error: DataType has not been declared + 914 | gtl::ArraySlice candidate_input_indices, DataType type, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:919:53: error: DataType has not been declared + 919 | gtl::ArraySlice candidate_input_indices, DataType type, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:1008:24: error: DataType has not been declared + 1008 | Status allocate_temp(DataType type, const TensorShape& shape, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:1011:24: error: DataType has not been declared + 1011 | Status allocate_temp(DataType type, const TensorShape& shape, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:1013:24: error: DataType has not been declared + 1013 | Status allocate_temp(DataType type, const TensorShape& shape, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:1267:26: error: DataType has not been declared + 1267 | Status allocate_tensor(DataType type, const TensorShape& shape, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:1274:26: error: DataType has not been declared + 1274 | Status allocate_tensor(DataType type, const TensorShape& shape, + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:1581:8: error: DataType does not name a type; did you mean DataTypeSet? + 1581 | inline DataType OpKernelContext::input_dtype(int index) const { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:1594:8: error: DataType does not name a type; did you mean DataTypeSet? + 1594 | inline DataType OpKernelContext::expected_output_dtype(int index) const { + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/op_kernel.h:1676:8: error: DataType does not name a type; did you mean DataTypeSet? + 1676 | inline DataType OpOutputList::expected_output_dtype(int i) const { + | ^~~~~~~~ + | DataTypeSet + In file included from /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a/deepmd_kit/deepmd_kit-3.0.1/source/op/tf/custom_op.h:11: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:212:31: error: DataType has not been declared + 212 | ShapeAndType(ShapeHandle s, DataType t) : shape(s), dtype(t) {} + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:216:31: error: DataType has not been declared + 216 | ShapeAndType(ShapeHandle s, DataType t, FullTypeDef type_) + | ^~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:220:3: error: DataType does not name a type; did you mean DataTypeSet? + 220 | DataType dtype = DT_INVALID; + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:221:15: error: field type has incomplete type tensorflow::FullTypeDef + 221 | FullTypeDef type; + | ^~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of class tensorflow::FullTypeDef + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h: In constructor tensorflow::shape_inference::ShapeAndType::ShapeAndType(tensorflow::shape_inference::ShapeHandle, int): + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:212:55: error: class tensorflow::shape_inference::ShapeAndType does not have any field named dtype + 212 | ShapeAndType(ShapeHandle s, DataType t) : shape(s), dtype(t) {} + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:216:55: error: type_ has incomplete type + 216 | ShapeAndType(ShapeHandle s, DataType t, FullTypeDef type_) + | ~~~~~~~~~~~~^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of class tensorflow::FullTypeDef + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h: In constructor tensorflow::shape_inference::ShapeAndType::ShapeAndType(tensorflow::shape_inference::ShapeHandle, int, tensorflow::FullTypeDef): + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:217:19: error: class tensorflow::shape_inference::ShapeAndType does not have any field named dtype + 217 | : shape(s), dtype(t), type(type_) {} + | ^~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h: At global scope: + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:269:53: error: DataType was not declared in this scope; did you mean DataTypeSet? + 269 | std::vector>>>& + | ^~~~~~~~ + | DataTypeSet + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:269:53: error: template argument 2 is invalid + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:269:61: error: template argument 1 is invalid + 269 | std::vector>>>& + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:269:61: error: template argument 2 is invalid + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:269:16: error: template argument 1 is invalid + 269 | std::vector>>>& + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:269:16: error: template argument 2 is invalid + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:269:63: error: template argument 1 is invalid + 269 | std::vector>>>& + | ^~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:269:63: error: template argument 2 is invalid + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/shape_inference.h:848:15: error: field ret_types_ has incomplete type tensorflow::FullTypeDef + 848 | FullTypeDef ret_types_; + | ^~~~~~~~~~ + /apps/gent/RHEL8/cascadelake-ib/software/TensorFlow/2.15.1-foss-2023a/lib/python3.11/site-packages/tensorflow/include/tensorflow/core/framework/full_type.pb.h:49:7: note: forward declaration of class tensorflow::FullTypeDef + 49 | class FullTypeDef; + | ^~~~~~~~~~~ + gmake[2]: *** [op/tf/CMakeFiles/deepmd_op.dir/build.make:77: op/tf/CMakeFiles/deepmd_op.dir/cmake_pch.hxx.gch] Error 1 + gmake[1]: *** [CMakeFiles/Makefile2:190: op/tf/CMakeFiles/deepmd_op.dir/all] Error 2 + gmake: *** [Makefile:136: all] Error 2 + + *** CMake build failed + [end of output] + + note: This error originates from a subprocess, and is likely not a problem with pip. + ERROR: Failed building wheel for deepmd-kit +Failed to build deepmd-kit +ERROR: Could not build wheels for deepmd-kit, which is required to install pyproject.toml-based projects + (at easybuild/easybuild-framework/easybuild/tools/run.py:695 in parse_cmd_output) +== 2025-01-23 12:37:44,963 build_log.py:267 INFO ... (took 1 min 12 secs) +== 2025-01-23 12:37:44,963 build_log.py:267 INFO ... (took 2 mins 24 secs) +== 2025-01-23 12:37:44,963 filetools.py:2025 INFO Removing lock /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/.locks/_scratch_gent_vo_001_gvo00117_easybuild_RHEL8_cascadelake-ampere-ib_software_DeePDM-kit_3.0.1-foss-2023a.lock... +== 2025-01-23 12:37:44,964 filetools.py:385 INFO Path /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/.locks/_scratch_gent_vo_001_gvo00117_easybuild_RHEL8_cascadelake-ampere-ib_software_DeePDM-kit_3.0.1-foss-2023a.lock successfully removed. +== 2025-01-23 12:37:44,964 filetools.py:2029 INFO Lock removed: /scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/.locks/_scratch_gent_vo_001_gvo00117_easybuild_RHEL8_cascadelake-ampere-ib_software_DeePDM-kit_3.0.1-foss-2023a.lock +== 2025-01-23 12:37:44,965 easyblock.py:4305 WARNING build failed (first 300 chars): cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exi +== 2025-01-23 12:37:44,967 easyblock.py:332 INFO Closing log for application name DeePDM-kit version 3.0.1 +== 2025-01-23 12:37:44,967 build_log.py:267 INFO FAILED: Installation ended unsuccessfully (build directory: /tmp/vsc47063/easybuild/build/DeePDMkit/3.0.1/foss-2023a): build failed (first 300 chars): cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exi (took 3 mins 23 secs) +== 2025-01-23 12:37:44,968 build_log.py:267 INFO Results of the build can be found in the log file(s) /tmp/vsc47063/eb-m63ydakg/easybuild-DeePDM-kit-3.0.1-20250123.123421.ACnpa.log +== 2025-01-23 12:37:44,968 build_log.py:171 ERROR EasyBuild crashed with an error (at easybuild/easybuild-framework/easybuild/base/exceptions.py:126 in __init__): build failed (first 300 chars): cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exi (at easybuild/easybuild-framework/easybuild/main.py:140 in build_and_install_software) +== 2025-01-23 12:37:44,969 build_log.py:171 ERROR EasyBuild crashed with an error (at easybuild/easybuild-framework/easybuild/base/exceptions.py:126 in __init__): Build of /kyukon/data/gent/470/vsc47063/vsc-software-stack/487_DeePMD-kit/deePMD.eb failed (err: 'build failed (first 300 chars): cmd " /apps/gent/RHEL8/cascadelake-ib/software/Python/3.11.3-GCCcore-12.3.0/bin/python -m pip install --prefix=/scratch/gent/vo/001/gvo00117/easybuild/RHEL8/cascadelake-ampere-ib/software/DeePDM-kit/3.0.1-foss-2023a --no-deps --ignore-installed --no-index --no-build-isolation ." exited with exi') (at easybuild/easybuild-framework/easybuild/main.py:178 in build_and_install_software) diff --git a/487_DeePMD-kit/protobuf-3.21.9.eb b/487_DeePMD-kit/protobuf-3.21.9.eb new file mode 100644 index 00000000..2da707b2 --- /dev/null +++ b/487_DeePMD-kit/protobuf-3.21.9.eb @@ -0,0 +1,35 @@ +easyblock = 'CMakeMake' + +name = 'protobuf' +version = '3.21.9' + +homepage = 'https://github.com/protocolbuffers/protobuf' +description = """Protocol Buffers (a.k.a., protobuf) are Google's +language-neutral, platform-neutral, extensible mechanism for +serializing structured data.""" + +toolchain = {'name': 'GCCcore', 'version': '12.3.0'} + +source_urls = ['https://github.com/protocolbuffers/protobuf/archive/refs/tags/'] +sources = ['v21.9.tar.gz'] +patches = ['protobuf-21.9_linking-error.patch'] +checksums = [ + '0aa7df8289c957a4c54cbe694fbabe99b180e64ca0f8fdb5e2f76dcf56ff2422', # v21.9.tar.gz + '14487154fa9d50cc647d6837f9e83f24d2002bcbac876b6b35eb042ededee7ad', # protobuf-21.9_linking-error.patch +] + +builddependencies = [ + ('binutils', '2.40'), + ('CMake', '3.26.3'), +] + +srcdir = 'cmake' + +configopts = '-Dprotobuf_BUILD_TESTS=OFF -Dprotobuf_BUILD_SHARED_LIBS=ON ' + +sanity_check_paths = { + 'files': ['bin/protoc', 'lib/libprotobuf.%s' % SHLIB_EXT], + 'dirs': [], +} + +moduleclass = 'devel'