Skip to content

{2025.06}[GCCcore/14.2.0] Adding ROCm-LLVM v19.0.0 /w ROCm 6.4.1#1473

Draft
casparvl wants to merge 11 commits intoEESSI:mainfrom
casparvl:rocm_llvm
Draft

{2025.06}[GCCcore/14.2.0] Adding ROCm-LLVM v19.0.0 /w ROCm 6.4.1#1473
casparvl wants to merge 11 commits intoEESSI:mainfrom
casparvl:rocm_llvm

Conversation

@casparvl
Copy link
Copy Markdown
Collaborator

@casparvl casparvl commented Apr 16, 2026

Just going to try something here, see what we are still missing for AMD GPU support...

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=zen2 for:arch=x86_64/amd/zen2,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 16, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: amd-zen2
Building for: x86_64/amd/zen2 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/148423

date job status comment
Apr 16 16:06:43 UTC 2026 submitted job id 148423 awaits release by job manager
Apr 16 16:07:13 UTC 2026 released job awaits launch by Slurm scheduler
Apr 16 16:13:16 UTC 2026 running job 148423 is running
Apr 16 16:15:03 UTC 2026 finished job id 148423 was cancelled
Apr 16 16:15:19 UTC 2026 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job148423.result does not exist in job directory or reading it failed.
  • No artefacts were found/reported.
Apr 16 16:15:19 UTC 2026 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job148423.test does not exist in job directory or reading it failed.

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot:cancel jobid:148423

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=zen2 for:arch=x86_64/amd/zen2,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 16, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: amd-zen2
Building for: x86_64/amd/zen2 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/148424

date job status comment
Apr 16 16:16:02 UTC 2026 submitted job id 148424 awaits release by job manager
Apr 16 16:16:22 UTC 2026 released job awaits launch by Slurm scheduler
Apr 16 16:17:24 UTC 2026 running job 148424 is running
Apr 16 16:20:14 UTC 2026 finished job id 148424 was cancelled
Apr 16 16:20:28 UTC 2026 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job148424.result does not exist in job directory or reading it failed.
  • No artefacts were found/reported.
Apr 16 16:20:28 UTC 2026 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job148424.test does not exist in job directory or reading it failed.

@casparvl
Copy link
Copy Markdown
Collaborator Author

Lmod has detected the following error: Incorrect value for
$EESSI_ACCELERATOR_TARGET: accel/amd/gfx90a
While processing the following module(s):
    Module fullname                 Module Filename
    ---------------                 ---------------
    EESSI-extend/2025.06-easybuild  /cvmfs/software.eessi.io/versions/2025.06/software/linux/x86_64/amd/zen2/modules/all/EESSI-extend/2025.06-easybuild.lua

And then later:

ESC[32mFound EasyBuild version 5.3.0, looking good!ESC[0m
#
# Current EasyBuild configuration
# (C: command line argument, D: default value, E: environment variable, F: configuration file)
#
buildpath      (D) = /eessi_bot_job/.local/easybuild/build
containerpath  (D) = /eessi_bot_job/.local/easybuild/containers
installpath    (E) = /cvmfs/software.eessi.io/versions/2025.06/software/linux/x86_64/amd/zen2
repositorypath (D) = /eessi_bot_job/.local/easybuild/ebfiles_repo
robot-paths    (D) = /cvmfs/software.eessi.io/versions/2025.06/software/linux/x86_64/amd/zen2/software/EasyBuild/5.3.0/easybuild/easyconfigs
rpath          (D) = True
sourcepath     (E) = /project/def-users/bot/shared/easybuild/sources:
#

Work to be done I guess...

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot:cancel jobid:148424

@casparvl
Copy link
Copy Markdown
Collaborator Author

-- Check if we have GPU capabilities and configure CUDA compute capabilities
eessi_accelerator_target = os.getenv("EESSI_ACCELERATOR_TARGET")
if (eessi_accelerator_target ~= nil) then
  cuda_compute_capability = string.match(eessi_accelerator_target, "^accel/nvidia/cc([0-9]+)$")
  if (cuda_compute_capability ~= nil) then
    -- The last digit should be the minor version, insert a dot in the one-but-last position
    major_version = cuda_compute_capability:sub(1, #cuda_compute_capability - 1)
    minor_version = cuda_compute_capability:sub(#cuda_compute_capability)
    easybuild_cuda_compute_capabilities = string.format("%s.%s", major_version, minor_version)
  else
    LmodError("Incorrect value for $EESSI_ACCELERATOR_TARGET: " .. eessi_accelerator_target)
  end

  -- If architectures are 9.0, 10.0 or 12.0, enable architecture or family-specific optimizations
  if easybuild_cuda_compute_capabilities == '9.0' then
    easybuild_cuda_compute_capabilities = '9.0a'
  elseif easybuild_cuda_compute_capabilities == '10.0' then
    easybuild_cuda_compute_capabilities = '10.0f'
  elseif easybuild_cuda_compute_capabilities == '12.0' then
    easybuild_cuda_compute_capabilities = '12.0f'
  end
end

Comment thread easystacks/software.eessi.io/2025.06/accel/amd/eessi-2025.06-eb-5.3.0-2025a.yml Outdated
@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=zen2 for:arch=x86_64/amd/zen2,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: amd-zen2
Building for: x86_64/amd/zen2 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150384

date job status comment
Apr 22 09:12:11 UTC 2026 submitted job id 150384 awaits release by job manager
Apr 22 09:13:15 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 09:14:21 UTC 2026 running job 150384 is running
Apr 22 12:42:20 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150384.out
✅ no message matching FATAL:
✅ no message matching ERROR:
✅ no message matching FAILED:
✅ no message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
Details
No artefacts were created or found.
Apr 22 12:42:20 UTC 2026 test result
😢 FAILURE (click triangle for details)
Reason
Failed for unknown reason
Details
✅ job output file slurm-150384.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=x86_64/amd/zen3 for:arch=x86_64/amd/zen3,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=x86_64/amd/zen4 for:arch=x86_64/amd/zen4,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-aws-eu-south on:arch=x86_64/amd/zen5 for:arch=x86_64/amd/zen5,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=x86_64/intel/skylake_avx512 for:arch=x86_64/intel/skylake_avx512,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=x86_64/intel/haswell for:arch=x86_64/intel/haswell,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=x86_64/intel/icelake for:arch=x86_64/intel/icelake,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=x86_64/intel/cascadelake for:arch=x86_64/intel/cascadelake,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=x86_64/intel/sapphirerapids for:arch=x86_64/intel/sapphirerapids,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=x86_64/generic for:arch=x86_64/generic,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=aarch64/neoverse_n1 for:arch=aarch64/neoverse_n1,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=aarch64/neoverse_v1 for:arch=aarch64/neoverse_v1,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-deucalion on:arch=aarch64/a64fx for:arch=aarch64/a64fx,accel=amd/gfx90a
bot: build repo:eessi.io-2025.06-software instance:eessi-bot-jsc on:arch=aarch64/nvidia/grace for:arch=aarch64/nvidia/grace,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: amd-zen3
Building for: x86_64/amd/zen3 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150398

date job status comment
Apr 22 11:16:40 UTC 2026 submitted job id 150398 awaits release by job manager
Apr 22 11:17:09 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:22:29 UTC 2026 running job 150398 is running
Apr 22 13:41:21 UTC 2026 finished job id 150398 was cancelled
Apr 22 13:42:15 UTC 2026 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job150398.result does not exist in job directory or reading it failed.
  • No artefacts were found/reported.
Apr 22 13:42:15 UTC 2026 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job150398.test does not exist in job directory or reading it failed.

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: amd-zen4
Building for: x86_64/amd/zen4 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150399

date job status comment
Apr 22 11:16:44 UTC 2026 submitted job id 150399 awaits release by job manager
Apr 22 11:17:12 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:18:38 UTC 2026 running job 150399 is running
Apr 22 13:18:27 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150399.out
✅ no message matching FATAL:
✅ no message matching ERROR:
✅ no message matching FAILED:
✅ no message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
Details
No artefacts were created or found.
Apr 22 13:18:27 UTC 2026 test result
😢 FAILURE (click triangle for details)
Reason
Failed for unknown reason
Details
✅ job output file slurm-150399.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws-eu-south
Copy link
Copy Markdown

eessi-bot-aws-eu-south Bot commented Apr 22, 2026

New job on instance eessi-bot-aws-eu-south for repository eessi.io-2025.06-software
Building on: amd-zen5
Building for: x86_64/amd/zen5 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/141

date job status comment
Apr 22 11:16:43 UTC 2026 submitted job id 141 awaits release by job manager
Apr 22 11:17:17 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:23:22 UTC 2026 running job 141 is running
Apr 22 12:46:51 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-141.out
✅ no message matching FATAL:
✅ no message matching ERROR:
✅ no message matching FAILED:
✅ no message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
Details
No artefacts were created or found.
Apr 22 12:46:51 UTC 2026 test result
😢 FAILURE (click triangle for details)
Reason
Failed for unknown reason
Details
✅ job output file slurm-141.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: intel-skylake_avx512
Building for: x86_64/intel/skylake_avx512 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150400

date job status comment
Apr 22 11:16:50 UTC 2026 submitted job id 150400 awaits release by job manager
Apr 22 11:17:22 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:18:48 UTC 2026 running job 150400 is running
Apr 22 13:45:06 UTC 2026 finished job id 150400 was cancelled
Apr 22 13:45:51 UTC 2026 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job150400.result does not exist in job directory or reading it failed.
  • No artefacts were found/reported.
Apr 22 13:45:51 UTC 2026 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job150400.test does not exist in job directory or reading it failed.

@eessi-bot-deucalion
Copy link
Copy Markdown

eessi-bot-deucalion Bot commented Apr 22, 2026

New job on instance eessi-bot-deucalion for repository eessi.io-2025.06-software
Building on: a64fx
Building for: aarch64/a64fx and accelerator amd/gfx90a
Job dir: /home/eessibot/new-bot/jobs/2026.04/pr_1473/1163573

date job status comment
Apr 22 11:16:53 UTC 2026 submitted job id 1163573 awaits release by job manager
Apr 22 11:17:02 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:18:05 UTC 2026 running job 1163573 is running
Apr 22 13:20:05 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-1163573.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-a64fx-accel-amd-gfx90a-17768635340.tar.zstsize: 1 MiB (1704502 bytes)
entries: 156
modules under 2025.06/software/linux/aarch64/a64fx/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/a64fx/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/a64fx/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/a64fx/accel/amd/gfx90a
2025.06/software/linux/aarch64/a64fx/modules/all/elfutils/0.193-GCCcore-14.2.0.lua
2025.06/software/linux/aarch64/a64fx/modules/lib/elfutils/0.193-GCCcore-14.2.0.lua
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/easybuild-elfutils-0.193-20260422.122706.log.bz2
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/elfutils-0.193-GCCcore-14.2.0-easybuild-devel
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/reprod/
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/reprod/easyblocks/
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/reprod/easyblocks/configuremake.py
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.env
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/reprod/hooks/
2025.06/software/linux/aarch64/a64fx/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112707UTC/easybuild/reprod/hooks/eb_hooks.py
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-addr2line
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-ar
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfclassify
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfcmp
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfcompress
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elflint
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-findtextrel
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-make-debug-archive
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-nm
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-objdump
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-ranlib
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-readelf
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-size
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-srcfiles
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-stack
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-strings
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-strip
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-unstrip
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/easybuild-elfutils-0.193-20260422.122706.log.bz2
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/elfutils-0.193-GCCcore-14.2.0-easybuild-devel
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/easyblocks/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/easyblocks/configuremake.py
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.env
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/hooks/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/hooks/eb_hooks.py
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/dwarf.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/elf-knowledge.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/known-dwarf.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libasm.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdw.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwelf.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwfl.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwfl_stacktrace.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/version.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/gelf.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/libelf.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/include/nlist.h
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm-0.193.so
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.a
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.so
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.so.1
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw-0.193.so
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.a
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.so
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.so.1
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf-0.193.so
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.a
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.so
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.so.1
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/libdw.pc
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/libelf.pc
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/lib64
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/LC_MESSAGES/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/LC_MESSAGES/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/LC_MESSAGES/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/LC_MESSAGES/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/LC_MESSAGES/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/LC_MESSAGES/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/LC_MESSAGES/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/debuginfod-find.1
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-elfclassify.1
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-readelf.1
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-srcfiles.1
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_add_http_header.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_begin.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_end.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_debuginfo.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_executable.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_metadata.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_section.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_source.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_get_url.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_get_user_data.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_set_progressfn.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_set_user_data.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_checksum.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_fsize.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getchdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getehdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getphdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getshdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_newehdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_newphdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_offscn.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_xlatetof.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_xlatetom.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_checksum.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_fsize.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getchdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getehdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getphdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getshdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_newehdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_newphdr.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_offscn.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_xlatetof.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_xlatetom.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_begin.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_clone.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_errmsg.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_errno.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_getdata.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_getscn.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_ndxscn.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_update.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_version.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/libelf.3
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man7/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man7/debuginfod-client-config.7
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/debuginfod.8
2025.06/software/linux/aarch64/a64fx/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/debuginfod.service.8
Apr 22 13:20:05 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ SKIP ] (1/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:a64fx+default [Skipping test: nodes in this partition only have 30720 MiB memory available (per node) according to the current ReFrame configuration, but 49152 MiB is needed]
[ SKIP ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:a64fx+default [Skipping test: nodes in this partition only have 30720 MiB memory available (per node) according to the current ReFrame configuration, but 49152 MiB is needed]
[ OK ] (3/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:a64fx+default
P: perf: 43.886 timesteps/s (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:a64fx+default
P: latency: 0.91 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:a64fx+default
P: bandwidth: 7835.59 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 3/5 test case(s) from 5 check(s) (0 failure(s), 2 skipped, 0 aborted)
Details
✅ job output file slurm-1163573.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: intel-haswell
Building for: x86_64/intel/haswell and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150401

date job status comment
Apr 22 11:16:54 UTC 2026 submitted job id 150401 awaits release by job manager
Apr 22 11:17:17 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:18:43 UTC 2026 running job 150401 is running
Apr 22 13:45:09 UTC 2026 finished job id 150401 was cancelled
Apr 22 13:45:49 UTC 2026 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job150401.result does not exist in job directory or reading it failed.
  • No artefacts were found/reported.
Apr 22 13:45:49 UTC 2026 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job150401.test does not exist in job directory or reading it failed.

@eessi-bot-jsc
Copy link
Copy Markdown

eessi-bot-jsc Bot commented Apr 22, 2026

New job on instance eessi-bot-jsc for repository eessi.io-2025.06-software
Building on: nvidia-grace
Building for: aarch64/nvidia/grace and accelerator amd/gfx90a
Job dir: /p/project1/ceasybuilders/eessibot/jobs/2026.04/pr_1473/14675862

date job status comment
Apr 22 11:16:58 UTC 2026 submitted job id 14675862 awaits release by job manager
Apr 22 11:17:22 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:18:25 UTC 2026 running job 14675862 is running
Apr 22 11:51:30 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-14675862.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-nvidia-grace-accel-amd-gfx90a-17768582710.tar.gzsize: 2 MiB (2399371 bytes)
entries: 156
modules under 2025.06/software/linux/aarch64/nvidia/grace/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/nvidia/grace/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/nvidia/grace/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/nvidia/grace/accel/amd/gfx90a
2025.06/software/linux/aarch64/nvidia/grace/modules/all/elfutils/0.193-GCCcore-14.2.0.lua
2025.06/software/linux/aarch64/nvidia/grace/modules/lib/elfutils/0.193-GCCcore-14.2.0.lua
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/easybuild-elfutils-0.193-20260422.132200.log.bz2
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/elfutils-0.193-GCCcore-14.2.0-easybuild-devel
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/reprod/
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/reprod/easyblocks/
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/reprod/easyblocks/configuremake.py
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.env
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/reprod/hooks/
2025.06/software/linux/aarch64/nvidia/grace/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112200UTC/easybuild/reprod/hooks/eb_hooks.py
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-addr2line
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-ar
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfclassify
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfcmp
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfcompress
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elflint
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-findtextrel
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-make-debug-archive
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-nm
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-objdump
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-ranlib
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-readelf
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-size
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-srcfiles
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-stack
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-strings
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-strip
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-unstrip
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/easybuild-elfutils-0.193-20260422.132200.log.bz2
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/elfutils-0.193-GCCcore-14.2.0-easybuild-devel
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/easyblocks/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/easyblocks/configuremake.py
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.env
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/hooks/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/hooks/eb_hooks.py
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/dwarf.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/elf-knowledge.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/known-dwarf.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libasm.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwelf.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwfl.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwfl_stacktrace.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdw.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/version.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/gelf.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/libelf.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/include/nlist.h
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib64
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm-0.193.so
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.a
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.so
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.so.1
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw-0.193.so
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.a
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.so
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.so.1
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf-0.193.so
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.a
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.so
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.so.1
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/libdw.pc
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/libelf.pc
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/LC_MESSAGES/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/LC_MESSAGES/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/LC_MESSAGES/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/LC_MESSAGES/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/LC_MESSAGES/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/LC_MESSAGES/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/LC_MESSAGES/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/debuginfod-find.1
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-elfclassify.1
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-readelf.1
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-srcfiles.1
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_add_http_header.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_begin.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_end.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_debuginfo.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_executable.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_metadata.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_section.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_source.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_get_url.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_get_user_data.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_set_progressfn.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_set_user_data.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_checksum.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_fsize.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getchdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getehdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getphdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getshdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_newehdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_newphdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_offscn.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_xlatetof.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_xlatetom.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_checksum.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_fsize.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getchdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getehdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getphdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getshdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_newehdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_newphdr.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_offscn.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_xlatetof.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_xlatetom.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_begin.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_clone.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_errmsg.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_errno.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_getdata.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_getscn.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_ndxscn.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_update.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_version.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/libelf.3
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man7/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man7/debuginfod-client-config.7
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/debuginfod.8
2025.06/software/linux/aarch64/nvidia/grace/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/debuginfod.service.8
Apr 22 11:51:30 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:aarch64-nvidia-grace+default
P: perf: 1513.524 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:aarch64-nvidia-grace+default
P: latency: 2.51 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:aarch64-nvidia-grace+default
P: latency: 6.19 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:aarch64-nvidia-grace+default
P: latency: 0.25 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:aarch64-nvidia-grace+default
P: bandwidth: 18449.56 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-14675862.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: intel-icelake
Building for: x86_64/intel/icelake and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150402

date job status comment
Apr 22 11:16:59 UTC 2026 submitted job id 150402 awaits release by job manager
Apr 22 11:17:19 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:18:46 UTC 2026 running job 150402 is running
Apr 22 13:45:11 UTC 2026 finished job id 150402 was cancelled
Apr 22 13:46:55 UTC 2026 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job150402.result does not exist in job directory or reading it failed.
  • No artefacts were found/reported.
Apr 22 13:46:55 UTC 2026 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job150402.test does not exist in job directory or reading it failed.

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: intel-cascadelake
Building for: x86_64/intel/cascadelake and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150403

date job status comment
Apr 22 11:17:04 UTC 2026 submitted job id 150403 awaits release by job manager
Apr 22 11:17:14 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:18:40 UTC 2026 running job 150403 is running
Apr 22 13:45:14 UTC 2026 finished job id 150403 was cancelled
Apr 22 13:45:47 UTC 2026 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job150403.result does not exist in job directory or reading it failed.
  • No artefacts were found/reported.
Apr 22 13:45:47 UTC 2026 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job150403.test does not exist in job directory or reading it failed.

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: intel-sapphirerapids
Building for: x86_64/intel/sapphirerapids and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150404

date job status comment
Apr 22 11:17:09 UTC 2026 submitted job id 150404 awaits release by job manager
Apr 22 11:18:35 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:20:07 UTC 2026 running job 150404 is running
Apr 22 13:37:08 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150404.out
✅ no message matching FATAL:
✅ no message matching ERROR:
✅ no message matching FAILED:
✅ no message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
Details
No artefacts were created or found.
Apr 22 13:37:08 UTC 2026 test result
😢 FAILURE (click triangle for details)
Reason
Failed for unknown reason
Details
✅ job output file slurm-150404.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: generic
Building for: x86_64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150405

date job status comment
Apr 22 11:17:14 UTC 2026 submitted job id 150405 awaits release by job manager
Apr 22 11:18:32 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:20:00 UTC 2026 running job 150405 is running
Apr 22 13:45:16 UTC 2026 finished job id 150405 was cancelled
Apr 22 13:45:44 UTC 2026 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job150405.result does not exist in job directory or reading it failed.
  • No artefacts were found/reported.
Apr 22 13:45:44 UTC 2026 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job150405.test does not exist in job directory or reading it failed.

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: generic
Building for: aarch64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150406

date job status comment
Apr 22 11:17:19 UTC 2026 submitted job id 150406 awaits release by job manager
Apr 22 11:18:25 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:19:50 UTC 2026 running job 150406 is running
Apr 22 12:05:53 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150406.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-generic-accel-amd-gfx90a-17768592810.tar.zstsize: 1 MiB (1561373 bytes)
entries: 156
modules under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a
2025.06/software/linux/aarch64/generic/modules/all/elfutils/0.193-GCCcore-14.2.0.lua
2025.06/software/linux/aarch64/generic/modules/lib/elfutils/0.193-GCCcore-14.2.0.lua
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/easybuild-elfutils-0.193-20260422.112118.log.bz2
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/elfutils-0.193-GCCcore-14.2.0-easybuild-devel
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/reprod/
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/reprod/easyblocks/
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/reprod/easyblocks/configuremake.py
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.env
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/reprod/hooks/
2025.06/software/linux/aarch64/generic/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112118UTC/easybuild/reprod/hooks/eb_hooks.py
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-addr2line
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-ar
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfclassify
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfcmp
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfcompress
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elflint
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-findtextrel
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-make-debug-archive
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-nm
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-objdump
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-ranlib
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-readelf
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-size
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-srcfiles
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-stack
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-strings
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-strip
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-unstrip
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/easybuild-elfutils-0.193-20260422.112118.log.bz2
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/elfutils-0.193-GCCcore-14.2.0-easybuild-devel
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/easyblocks/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/easyblocks/configuremake.py
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.env
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/hooks/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/hooks/eb_hooks.py
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/dwarf.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/elf-knowledge.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/known-dwarf.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libasm.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwelf.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwfl.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwfl_stacktrace.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdw.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/version.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/gelf.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/libelf.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/include/nlist.h
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib64
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm-0.193.so
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.a
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.so
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.so.1
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw-0.193.so
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.a
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.so
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.so.1
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf-0.193.so
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.a
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.so
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.so.1
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/libdw.pc
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/libelf.pc
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/LC_MESSAGES/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/LC_MESSAGES/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/LC_MESSAGES/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/LC_MESSAGES/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/LC_MESSAGES/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/LC_MESSAGES/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/LC_MESSAGES/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/debuginfod-find.1
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-elfclassify.1
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-readelf.1
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-srcfiles.1
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_add_http_header.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_begin.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_end.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_debuginfo.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_executable.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_metadata.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_section.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_source.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_get_url.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_get_user_data.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_set_progressfn.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_set_user_data.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_checksum.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_fsize.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getchdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getehdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getphdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getshdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_newehdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_newphdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_offscn.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_xlatetof.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_xlatetom.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_checksum.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_fsize.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getchdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getehdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getphdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getshdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_newehdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_newphdr.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_offscn.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_xlatetof.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_xlatetom.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_begin.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_clone.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_errmsg.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_errno.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_getdata.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_getscn.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_ndxscn.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_update.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_version.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/libelf.3
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man7/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man7/debuginfod-client-config.7
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/debuginfod.8
2025.06/software/linux/aarch64/generic/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/debuginfod.service.8
Apr 22 12:05:53 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:aarch64-generic+default
P: perf: 661.888 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:aarch64-generic+default
P: latency: 2.02 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:aarch64-generic+default
P: latency: 5.52 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:aarch64-generic+default
P: latency: 0.3 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:aarch64-generic+default
P: bandwidth: 15758.35 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-150406.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 22, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: neoverse_n1
Building for: aarch64/neoverse_n1 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150407

date job status comment
Apr 22 11:17:23 UTC 2026 submitted job id 150407 awaits release by job manager
Apr 22 11:18:28 UTC 2026 released job awaits launch by Slurm scheduler
Apr 22 11:19:53 UTC 2026 running job 150407 is running
Apr 22 12:04:37 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150407.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-neoverse_n1-accel-amd-gfx90a-17768592260.tar.zstsize: 1 MiB (1561699 bytes)
entries: 156
modules under 2025.06/software/linux/aarch64/neoverse_n1/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/neoverse_n1/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/neoverse_n1/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/neoverse_n1/accel/amd/gfx90a
2025.06/software/linux/aarch64/neoverse_n1/modules/all/elfutils/0.193-GCCcore-14.2.0.lua
2025.06/software/linux/aarch64/neoverse_n1/modules/lib/elfutils/0.193-GCCcore-14.2.0.lua
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/easybuild-elfutils-0.193-20260422.112115.log.bz2
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/elfutils-0.193-GCCcore-14.2.0-easybuild-devel
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/reprod/
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/reprod/easyblocks/
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/reprod/easyblocks/configuremake.py
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.env
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/reprod/hooks/
2025.06/software/linux/aarch64/neoverse_n1/reprod/elfutils/0.193-GCCcore-14.2.0/20260422_112115UTC/easybuild/reprod/hooks/eb_hooks.py
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-addr2line
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-ar
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfclassify
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfcmp
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elfcompress
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-elflint
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-findtextrel
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-make-debug-archive
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-nm
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-objdump
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-ranlib
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-readelf
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-size
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-srcfiles
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-stack
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-strings
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-strip
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/bin/eu-unstrip
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/easybuild-elfutils-0.193-20260422.112115.log.bz2
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/elfutils-0.193-GCCcore-14.2.0-easybuild-devel
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/easyblocks/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/easyblocks/configuremake.py
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.eb
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/elfutils-0.193-GCCcore-14.2.0.env
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/hooks/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/easybuild/reprod/hooks/eb_hooks.py
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/dwarf.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/elf-knowledge.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/known-dwarf.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libasm.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwelf.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwfl.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdwfl_stacktrace.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/libdw.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/elfutils/version.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/gelf.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/libelf.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/include/nlist.h
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib64
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm-0.193.so
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.a
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.so
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libasm.so.1
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw-0.193.so
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.a
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.so
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libdw.so.1
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf-0.193.so
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.a
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.so
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/libelf.so.1
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/libdw.pc
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/lib/pkgconfig/libelf.pc
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/LC_MESSAGES/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/de/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/LC_MESSAGES/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@boldquot/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/LC_MESSAGES/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/en@quot/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/LC_MESSAGES/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/es/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/LC_MESSAGES/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/ja/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/LC_MESSAGES/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/pl/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/LC_MESSAGES/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/locale/uk/LC_MESSAGES/elfutils.mo
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/debuginfod-find.1
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-elfclassify.1
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-readelf.1
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man1/eu-srcfiles.1
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_add_http_header.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_begin.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_end.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_debuginfo.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_executable.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_metadata.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_section.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_find_source.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_get_url.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_get_user_data.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_set_progressfn.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/debuginfod_set_user_data.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_checksum.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_fsize.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getchdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getehdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getphdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_getshdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_newehdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_newphdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_offscn.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_xlatetof.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf32_xlatetom.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_checksum.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_fsize.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getchdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getehdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getphdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_getshdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_newehdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_newphdr.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_offscn.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_xlatetof.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf64_xlatetom.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_begin.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_clone.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_errmsg.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_errno.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_getdata.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_getscn.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_ndxscn.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_update.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/elf_version.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man3/libelf.3
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man7/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man7/debuginfod-client-config.7
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/debuginfod.8
2025.06/software/linux/aarch64/neoverse_n1/software/elfutils/0.193-GCCcore-14.2.0/share/man/man8/debuginfod.service.8
Apr 22 12:04:37 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:aarch64-neoverse_n1+default
P: perf: 656.057 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:aarch64-neoverse_n1+default
P: latency: 1.94 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:aarch64-neoverse_n1+default
P: latency: 5.34 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:aarch64-neoverse_n1+default
P: latency: 0.28 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:aarch64-neoverse_n1+default
P: bandwidth: 16289.57 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-150407.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws-eu-south
Copy link
Copy Markdown

eessi-bot-aws-eu-south Bot commented Apr 23, 2026

New job on instance eessi-bot-aws-eu-south for repository eessi.io-2025.06-software
Building on: amd-zen5
Building for: x86_64/amd/zen5 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/149

date job status comment
Apr 23 23:40:38 UTC 2026 submitted job id 149 awaits release by job manager
Apr 23 23:41:27 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 23:47:34 UTC 2026 running job 149 is running
Apr 24 03:20:47 UTC 2026 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-149.out
✅ no message matching FATAL:
✅ no message matching ERROR:
✅ no message matching FAILED:
✅ no message matching required modules missing:
✅ found message(s) matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-x86_64-amd-zen5-accel-amd-gfx90a-17770006610.tar.zstsize: 1449 MiB (1520300217 bytes)
entries: 8528
modules under 2025.06/software/linux/x86_64/amd/zen5/accel/amd/gfx90a/modules/all
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1.lua
software under 2025.06/software/linux/x86_64/amd/zen5/accel/amd/gfx90a/software
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1
reprod directories under 2025.06/software/linux/x86_64/amd/zen5/accel/amd/gfx90a/reprod
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1/20260424_031720UTC
other under 2025.06/software/linux/x86_64/amd/zen5/accel/amd/gfx90a
no other files in tarball
Apr 24 03:20:47 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:x86-64-zen5+default
P: perf: 1567.362 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:x86-64-zen5+default
P: latency: 1.28 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:x86-64-zen5+default
P: latency: 2.79 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:x86-64-zen5+default
P: latency: 0.19 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:x86-64-zen5+default
P: bandwidth: 56128.99 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-149.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 23, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: intel-haswell
Building for: x86_64/intel/haswell and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150802

date job status comment
Apr 23 23:40:43 UTC 2026 submitted job id 150802 awaits release by job manager
Apr 23 23:41:29 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 23:49:14 UTC 2026 running job 150802 is running
Apr 24 07:52:35 UTC 2026 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-150802.out
✅ no message matching FATAL:
✅ no message matching ERROR:
✅ no message matching FAILED:
✅ no message matching required modules missing:
✅ found message(s) matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-x86_64-intel-haswell-accel-amd-gfx90a-17770169630.tar.zstsize: 1437 MiB (1507164614 bytes)
entries: 8528
modules under 2025.06/software/linux/x86_64/intel/haswell/accel/amd/gfx90a/modules/all
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1.lua
software under 2025.06/software/linux/x86_64/intel/haswell/accel/amd/gfx90a/software
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1
reprod directories under 2025.06/software/linux/x86_64/intel/haswell/accel/amd/gfx90a/reprod
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1/20260424_074854UTC
other under 2025.06/software/linux/x86_64/intel/haswell/accel/amd/gfx90a
no other files in tarball
Apr 24 07:52:35 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:x86-64-haswell+default
P: perf: 433.631 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:x86-64-haswell+default
P: latency: 2.25 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:x86-64-haswell+default
P: latency: 2.41 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:x86-64-haswell+default
P: latency: 0.61 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:x86-64-haswell+default
P: bandwidth: 10341.2 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-150802.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 23, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: intel-icelake
Building for: x86_64/intel/icelake and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150803

date job status comment
Apr 23 23:40:48 UTC 2026 submitted job id 150803 awaits release by job manager
Apr 23 23:41:35 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 23:49:19 UTC 2026 running job 150803 is running
Apr 24 06:21:17 UTC 2026 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-150803.out
✅ no message matching FATAL:
✅ no message matching ERROR:
✅ no message matching FAILED:
✅ no message matching required modules missing:
✅ found message(s) matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-x86_64-intel-icelake-accel-amd-gfx90a-17770115140.tar.zstsize: 1448 MiB (1518533497 bytes)
entries: 8528
modules under 2025.06/software/linux/x86_64/intel/icelake/accel/amd/gfx90a/modules/all
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1.lua
software under 2025.06/software/linux/x86_64/intel/icelake/accel/amd/gfx90a/software
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1
reprod directories under 2025.06/software/linux/x86_64/intel/icelake/accel/amd/gfx90a/reprod
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1/20260424_061808UTC
other under 2025.06/software/linux/x86_64/intel/icelake/accel/amd/gfx90a
no other files in tarball
Apr 24 06:21:17 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:x86-64-icelake+default
P: perf: 520.54 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:x86-64-icelake+default
P: latency: 1.02 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:x86-64-icelake+default
P: latency: 1.51 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:x86-64-icelake+default
P: latency: 0.25 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:x86-64-icelake+default
P: bandwidth: 13847.51 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-150803.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 23, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: intel-sapphirerapids
Building for: x86_64/intel/sapphirerapids and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150804

date job status comment
Apr 23 23:40:52 UTC 2026 submitted job id 150804 awaits release by job manager
Apr 23 23:41:40 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 23:49:24 UTC 2026 running job 150804 is running
Apr 24 08:14:25 UTC 2026 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-150804.out
✅ no message matching FATAL:
✅ no message matching ERROR:
✅ no message matching FAILED:
✅ no message matching required modules missing:
✅ found message(s) matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-x86_64-intel-sapphirerapids-accel-amd-gfx90a-17770182380.tar.zstsize: 1452 MiB (1522839312 bytes)
entries: 8528
modules under 2025.06/software/linux/x86_64/intel/sapphirerapids/accel/amd/gfx90a/modules/all
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1.lua
software under 2025.06/software/linux/x86_64/intel/sapphirerapids/accel/amd/gfx90a/software
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1
reprod directories under 2025.06/software/linux/x86_64/intel/sapphirerapids/accel/amd/gfx90a/reprod
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1/20260424_081007UTC
other under 2025.06/software/linux/x86_64/intel/sapphirerapids/accel/amd/gfx90a
no other files in tarball
Apr 24 08:14:25 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:x86-64-sapphirerapids+default
P: perf: 614.178 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:x86-64-sapphirerapids+default
P: latency: 1.44 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:x86-64-sapphirerapids+default
P: latency: 1.47 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:x86-64-sapphirerapids+default
P: latency: 0.28 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:x86-64-sapphirerapids+default
P: bandwidth: 13992.5 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-150804.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@bedroge
Copy link
Copy Markdown
Collaborator

bedroge commented Apr 28, 2026

The build on nvidia-grace here fails with

[ 75%] Linking CXX executable ../../../bin/lli-child-target
cd /tmp/eessibot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/tools/lli/ChildTarget && /cvmfs/software
.eessi.io/versions/2025.06/software/linux/aarch64/nvidia/grace/software/CMake/3.31.3-GCCcore-14.2.0/bin/cmake -E cmake_link_sc
ript CMakeFiles/lli-child-target.dir/link.txt --verbose=1
/tmp/eessibot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AAr
ch64/GISel/AArch64InstructionSelector.cpp:6628: error: no declaration matches ‘bool {anonymous}::AArch64InstructionSelector::s
electPtrAuthGlobalValue(llvm::MachineInstr&, llvm::MachineRegisterInfo&) const’
 6628 | bool AArch64InstructionSelector::selectPtrAuthGlobalValue(
/tmp/eessibot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AAr
ch64/GISel/AArch64InstructionSelector.cpp:6628: note: no functions named ‘bool {anonymous}::AArch64InstructionSelector::select
PtrAuthGlobalValue(llvm::MachineInstr&, llvm::MachineRegisterInfo&) const’
/tmp/eessibot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AAr
ch64/GISel/AArch64InstructionSelector.cpp:70: note: ‘class {anonymous}::AArch64InstructionSelector’ defined here
   70 | class AArch64InstructionSelector : public InstructionSelector {

Related upstream issue ROCm/llvm-project#275

See https://github.com/ROCm/ROCm/blob/rocm-6.4.1/.azuredevops/components/llvm-project.yml

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 28, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: generic
Building for: aarch64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/152277

date job status comment
Apr 28 12:49:19 UTC 2026 submitted job id 152277 awaits release by job manager
Apr 28 12:50:10 UTC 2026 released job awaits launch by Slurm scheduler
Apr 28 12:51:16 UTC 2026 running job 152277 is running
Apr 28 12:54:28 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-152277.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-generic-accel-amd-gfx90a-17773807050.tar.zstsize: 0 MiB (22 bytes)
entries: 0
modules under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a
no other files in tarball
Apr 28 12:54:28 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:aarch64-generic+default
P: perf: 659.472 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:aarch64-generic+default
P: latency: 1.96 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:aarch64-generic+default
P: latency: 5.59 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:aarch64-generic+default
P: latency: 0.29 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:aarch64-generic+default
P: bandwidth: 15437.92 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-152277.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 28, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: generic
Building for: aarch64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/152279

date job status comment
Apr 28 13:25:52 UTC 2026 submitted job id 152279 awaits release by job manager
Apr 28 13:26:57 UTC 2026 released job awaits launch by Slurm scheduler
Apr 28 13:28:03 UTC 2026 running job 152279 is running
Apr 28 14:32:44 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-152279.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-generic-accel-amd-gfx90a-17773865110.tar.zstsize: 0 MiB (22 bytes)
entries: 0
modules under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a
no other files in tarball
Apr 28 14:32:44 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:aarch64-generic+default
P: perf: 662.583 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:aarch64-generic+default
P: latency: 2.01 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:aarch64-generic+default
P: latency: 5.46 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:aarch64-generic+default
P: latency: 0.28 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:aarch64-generic+default
P: bandwidth: 15259.53 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-152279.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@casparvl
Copy link
Copy Markdown
Collaborator Author

[ 75%] Building CXX object lib/Target/AMDGPU/CMakeFiles/LLVMAMDGPUCodeGen.dir/AMDGPUAtomicOptimizer.cpp.o
cd /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/lib/Target/AMDGPU && /tmp/eb-hd1q8u3t/eb-j7nrb1_x/tmp2c3iw49j/rpath_wrappers/gxx_wrapper/g++ --sysroot=/cvmfs/software.eessi.io/versions/2025.06/compat/linux/aarch64 -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS
-D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/lib/Target/AMDGPU -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AMDGPU -I/tmp/bot/easyb
uild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/include -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/include -O2 -ftree-vectorize -mcpu=generic -fno-math-errno -fPIC -fno-semantic-interposition -fvisibility
-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-no
except-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17 -fPIC -fvisibility=hidden  -fno-exceptions -funwind-tables -MD -MT lib/Target/AMDGPU/CMakeFiles/LLVMAMD
GPUCodeGen.dir/AMDGPUAtomicOptimizer.cpp.o -MF CMakeFiles/LLVMAMDGPUCodeGen.dir/AMDGPUAtomicOptimizer.cpp.o.d -o CMakeFiles/LLVMAMDGPUCodeGen.dir/AMDGPUAtomicOptimizer.cpp.o -c /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/li
b/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp: In member function ‘bool {anonymous}::AArch64InstructionSelector::selectPtrAuthGlobalValue(llvm::MachineInstr&, llvm::Mach
ineRegisterInfo&) const’:
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp:6705: error: ‘LOADgotPAC’ is not a member of ‘llvm::AArch64’; did you mean ‘LOADgot’?
 6705 |     MIB.buildInstr(NeedsGOTLoad ? AArch64::LOADgotPAC : AArch64::MOVaddrPAC)
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp:6705: error: ‘MOVaddrPAC’ is not a member of ‘llvm::AArch64’; did you mean ‘MOVaddrBA’?
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp:6730: error: ‘LOADauthptrstatic’ is not a member of ‘llvm::AArch64’
 6730 |   MIB.buildInstr(AArch64::LOADauthptrstatic, {DefReg}, {})
[ 75%] Building CXX object tools/llvm-exegesis/lib/CMakeFiles/LLVMExegesis.dir/LlvmState.cpp.o
cd /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/tools/llvm-exegesis/lib && /tmp/eb-hd1q8u3t/eb-j7nrb1_x/tmp2c3iw49j/rpath_wrappers/gxx_wrapper/g++ --sysroot=/cvmfs/software.eessi.io/versions/2025.06/compat/linux/aarch64 -D_GNU_SOURCE -D__STDC_CONSTANT_M
ACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/tools/llvm-exegesis/lib -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/tools/llvm-exegesis/li
b -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/include -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/include -O2 -ftree-vectorize -mcpu=generic -fno-math-errno -fPIC -fno-semantic-interpos
ition -fvisibility-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessim
izing-move -Wno-noexcept-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17 -fPIC  -fno-exceptions -funwind-tables -MD -MT tools/llvm-exegesis/lib/CMakeFiles/LLV
MExegesis.dir/LlvmState.cpp.o -MF CMakeFiles/LLVMExegesis.dir/LlvmState.cpp.o.d -o CMakeFiles/LLVMExegesis.dir/LlvmState.cpp.o -c /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/tools/llvm-exegesis/lib/LlvmState.cpp
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp: At global scope:
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp:6630: warning: ‘bool {anonymous}::AArch64InstructionSelector::selectPtrAuthGlobalValue(llvm::MachineInstr&, llvm::MachineRe
gisterInfo&) const’ defined but not used [-Wunused-function]

@casparvl
Copy link
Copy Markdown
Collaborator Author

Considering the function is defined, but not used - and considering it seems to be the function body that causes issues - maybe the bug wasn't that the declaration was removed, but maybe the bug was that the function implementation wasn't also removed?

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 28, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: generic
Building for: aarch64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/152291

date job status comment
Apr 28 15:14:24 UTC 2026 submitted job id 152291 awaits release by job manager
Apr 28 15:14:55 UTC 2026 released job awaits launch by Slurm scheduler
Apr 28 15:16:01 UTC 2026 running job 152291 is running
Apr 28 16:20:46 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-152291.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-generic-accel-amd-gfx90a-17773930210.tar.zstsize: 0 MiB (22 bytes)
entries: 0
modules under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a
no other files in tarball
Apr 28 16:20:46 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:aarch64-generic+default
P: perf: 660.505 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:aarch64-generic+default
P: latency: 2.01 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:aarch64-generic+default
P: latency: 5.54 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:aarch64-generic+default
P: latency: 0.28 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:aarch64-generic+default
P: bandwidth: 15096.9 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-152291.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@casparvl
Copy link
Copy Markdown
Collaborator Author

casparvl commented Apr 28, 2026

Seems like it contains more of these functions where there's only a definition, no declaration...

[ 76%] Building CXX object lib/Target/AMDGPU/CMakeFiles/LLVMAMDGPUCodeGen.dir/AMDGPUHSAMetadataStreamer.cpp.o
cd /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/lib/Target/AMDGPU && /tmp/eb-_adk6c1b/eb-rmpxne38/tmpavzaj1lt/rpath_wrappers/gxx_wrapper/g++ --sysroot=/cvmfs/software.eessi.io/versions/2025.06/compat/linux/aarch64 -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS
-D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/lib/Target/AMDGPU -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AMDGPU -I/tmp/bot/easyb
uild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/include -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/include -O2 -ftree-vectorize -mcpu=generic -fno-math-errno -fPIC -fno-semantic-interposition -fvisibility
-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-no
except-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17 -fPIC -fvisibility=hidden  -fno-exceptions -funwind-tables -MD -MT lib/Target/AMDGPU/CMakeFiles/LLVMAMD
GPUCodeGen.dir/AMDGPUHSAMetadataStreamer.cpp.o -MF CMakeFiles/LLVMAMDGPUCodeGen.dir/AMDGPUHSAMetadataStreamer.cpp.o.d -o CMakeFiles/LLVMAMDGPUCodeGen.dir/AMDGPUHSAMetadataStreamer.cpp.o -c /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1
.src/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp:1700: error: no declaration matches ‘void {anonymous}::AArch64AsmPrinter::LowerLOADauthptrstatic(const llvm::MachineInstr&)’
 1700 | void AArch64AsmPrinter::LowerLOADauthptrstatic(const MachineInstr &MI) {
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp:1700: note: no functions named ‘void {anonymous}::AArch64AsmPrinter::LowerLOADauthptrstatic(const llvm::MachineInstr&)’
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp:75: note: ‘class {anonymous}::AArch64AsmPrinter’ defined here
   75 | class AArch64AsmPrinter : public AsmPrinter {
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp:1758: error: no declaration matches ‘void {anonymous}::AArch64AsmPrinter::LowerMOVaddrPAC(const llvm::MachineInstr&)’
 1758 | void AArch64AsmPrinter::LowerMOVaddrPAC(const MachineInstr &MI) {
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp:1758: note: no functions named ‘void {anonymous}::AArch64AsmPrinter::LowerMOVaddrPAC(const llvm::MachineInstr&)’
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp:75: note: ‘class {anonymous}::AArch64AsmPrinter’ defined here
   75 | class AArch64AsmPrinter : public AsmPrinter {

We can try to clean up a couple more. But it might be good to have another look how the ROCm-LLVM repo ended up in this situation - my bet is that upstream LLVM was fine...

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 29, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: generic
Building for: aarch64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/152593

date job status comment
Apr 29 09:57:15 UTC 2026 submitted job id 152593 awaits release by job manager
Apr 29 09:57:58 UTC 2026 released job awaits launch by Slurm scheduler
Apr 29 10:04:04 UTC 2026 running job 152593 is running
Apr 29 10:07:15 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-152593.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-generic-accel-amd-gfx90a-17774570890.tar.zstsize: 0 MiB (22 bytes)
entries: 0
modules under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a
no other files in tarball
Apr 29 10:07:15 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:aarch64-generic+default
P: perf: 659.682 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:aarch64-generic+default
P: latency: 1.92 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:aarch64-generic+default
P: latency: 5.42 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:aarch64-generic+default
P: latency: 0.3 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:aarch64-generic+default
P: bandwidth: 15402.77 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-152593.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@casparvl
Copy link
Copy Markdown
Collaborator Author

@zerefwayne something wrong with the patch file...

== 2026-04-29 10:04:33,750 run.py:646 WARNING 'patch ...' shell command FAILED (exit code 1)
== 2026-04-29 10:04:33,750 run.py:647 INFO Output of 'patch ...' shell command (stdout + stderr):
The next patch would delete the file ROCm-LLVM-19.0.0_fix-aarch64-missing-decl.patch,
which does not exist!  Assume -R? [n]
Apply anyway? [n]
Skipping patch.
1 out of 1 hunk ignored
patching file llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 29, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: generic
Building for: aarch64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/152594

date job status comment
Apr 29 11:09:06 UTC 2026 submitted job id 152594 awaits release by job manager
Apr 29 11:09:26 UTC 2026 released job awaits launch by Slurm scheduler
Apr 29 11:15:33 UTC 2026 running job 152594 is running
Apr 29 12:10:25 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-152594.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-generic-accel-amd-gfx90a-17774643460.tar.zstsize: 0 MiB (22 bytes)
entries: 0
modules under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a
no other files in tarball
Apr 29 12:10:25 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:aarch64-generic+default
P: perf: 653.62 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:aarch64-generic+default
P: latency: 1.96 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:aarch64-generic+default
P: latency: 5.39 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:aarch64-generic+default
P: latency: 0.3 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:aarch64-generic+default
P: bandwidth: 12283.98 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-152594.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@casparvl
Copy link
Copy Markdown
Collaborator Author

There we go again...

/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:9620: error: no declaration matches ‘llvm::SDValue llvm::AArch64TargetLowering::LowerPtrAuthGlobalAddressStatically(llvm::SDValue, llvm::S
DLoc, llvm::EVT, llvm::AArch64PACKey::ID, llvm::SDValue, llvm::SDValue, llvm::SelectionDAG&) const’
 9620 | SDValue AArch64TargetLowering::LowerPtrAuthGlobalAddressStatically(
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:9620: note: no functions named ‘llvm::SDValue llvm::AArch64TargetLowering::LowerPtrAuthGlobalAddressStatically(llvm::SDValue, llvm::SDLoc,
 llvm::EVT, llvm::AArch64PACKey::ID, llvm::SDValue, llvm::SDValue, llvm::SelectionDAG&) const’
In file included from /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:13:
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64ISelLowering.h:559:7: note: ‘class llvm::AArch64TargetLowering’ defined here
  559 | class AArch64TargetLowering : public TargetLowering {
      |       ^~~~~~~~~~~~~~~~~~~~~
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:9644: error: no declaration matches ‘llvm::SDValue llvm::AArch64TargetLowering::LowerPtrAuthGlobalAddress(llvm::SDValue, llvm::SelectionDA
G&) const’
 9644 | AArch64TargetLowering::LowerPtrAuthGlobalAddress(SDValue Op,
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:9644: note: no functions named ‘llvm::SDValue llvm::AArch64TargetLowering::LowerPtrAuthGlobalAddress(llvm::SDValue, llvm::SelectionDAG&) c
onst’
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64ISelLowering.h:559:7: note: ‘class llvm::AArch64TargetLowering’ defined here
  559 | class AArch64TargetLowering : public TargetLowering {
      |       ^~~~~~~~~~~~~~~~~~~~~
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp: In static member function ‘static {anonymous}::AMDGPULowerModuleLDS::LDSVariableReplacement {anonymous}::AMDGPULowerModuleLDS::create
LDSVariableReplacement(llvm::Module&, std::string, const llvm::DenseSet<llvm::GlobalVariable*>&, llvm::Function*)’:
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp:1315: warning: unused variable ‘ArgOp’ [-Wunused-variable]
 1315 |           if (auto *ArgOp = std::get_if<DIOp::Arg>(&Op)) {
make[2]: *** [lib/Target/AArch64/CMakeFiles/LLVMAArch64CodeGen.dir/build.make:530: lib/Target/AArch64/CMakeFiles/LLVMAArch64CodeGen.dir/AArch64ISelLowering.cpp.o] Error 1

@casparvl
Copy link
Copy Markdown
Collaborator Author

bot: build repo:eessi.io-2025.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=amd/gfx90a

@eessi-bot-aws
Copy link
Copy Markdown

eessi-bot-aws Bot commented Apr 29, 2026

New job on instance eessi-bot-mc-aws for repository eessi.io-2025.06-software
Building on: generic
Building for: aarch64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/152672

date job status comment
Apr 29 15:09:54 UTC 2026 submitted job id 152672 awaits release by job manager
Apr 29 15:11:26 UTC 2026 released job awaits launch by Slurm scheduler
Apr 29 15:31:23 UTC 2026 running job 152672 is running
Apr 29 16:23:51 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-152672.out
✅ no message matching FATAL:
❌ found message matching ERROR:
❌ found message matching FAILED:
❌ found message matching required modules missing:
❌ no message matching No missing installations
✅ found message matching .tar.* created!
Artefacts
eessi-2025.06-software-linux-aarch64-generic-accel-amd-gfx90a-17774794650.tar.zstsize: 0 MiB (22 bytes)
entries: 0
modules under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/generic/accel/amd/gfx90a
no other files in tarball
Apr 29 16:23:51 UTC 2026 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ OK ] (1/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:aarch64-generic+default
P: perf: 661.637 timesteps/s (r:0, l:None, u:None)
[ OK ] (2/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /e4bf9965 @BotBuildTests:aarch64-generic+default
P: latency: 1.81 us (r:0, l:None, u:None)
[ OK ] (3/5) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node %device_type=cpu /3da4890b @BotBuildTests:aarch64-generic+default
P: latency: 5.27 us (r:0, l:None, u:None)
[ OK ] (4/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /3255009a @BotBuildTests:aarch64-generic+default
P: latency: 0.29 us (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2025a %scale=1_node /59f4b331 @BotBuildTests:aarch64-generic+default
P: bandwidth: 15904.11 MB/s (r:0, l:None, u:None)
[ PASSED ] Ran 5/5 test case(s) from 5 check(s) (0 failure(s), 0 skipped, 0 aborted)
Details
✅ job output file slurm-152672.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@casparvl
Copy link
Copy Markdown
Collaborator Author

[ 78%] Building CXX object lib/Target/AMDGPU/CMakeFiles/LLVMAMDGPUCodeGen.dir/AMDGPURegisterBankInfo.cpp.o
cd /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/lib/Target/AMDGPU && /tmp/eb-xo6kqppq/eb-md9n7zwq/tmpcvbzchjy/rpath_wrappers/gxx_wrapper/g++ --sysroot=/cvmfs/software.eessi.io/versions/2025.06/compat/linux/aarch64 -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS
-D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/lib/Target/AMDGPU -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AMDGPU -I/tmp/bot/easyb
uild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/include -I/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/include -O2 -ftree-vectorize -mcpu=generic -fno-math-errno -fPIC -fno-semantic-interposition -fvisibility
-inlines-hidden -Werror=date-time -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wimplicit-fallthrough -Wno-maybe-uninitialized -Wno-nonnull -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-no
except-type -Wdelete-non-virtual-dtor -Wsuggest-override -Wno-comment -Wno-misleading-indentation -Wctad-maybe-unsupported -ffunction-sections -fdata-sections -O3 -DNDEBUG -std=c++17 -fPIC -fvisibility=hidden  -fno-exceptions -funwind-tables -MD -MT lib/Target/AMDGPU/CMakeFiles/LLVMAMD
GPUCodeGen.dir/AMDGPURegisterBankInfo.cpp.o -MF CMakeFiles/LLVMAMDGPUCodeGen.dir/AMDGPURegisterBankInfo.cpp.o.d -o CMakeFiles/LLVMAMDGPUCodeGen.dir/AMDGPURegisterBankInfo.cpp.o -c /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm
/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp: In function ‘llvm::MCSymbol* getAuthPtrSlotSymbolHelper(llvm::MCContext&, const llvm::TargetMachine&, llvm::MachineModuleInfo*, Mac
hineModuleInfoTarget&, const llvm::MCSymbol*, llvm::AArch64PACKey::ID, uint16_t)’:
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp:98: warning: invalid use of incomplete type ‘class llvm::MachineModuleInfo’
   98 |   const DataLayout &DL = MMI->getModule()->getDataLayout();
In file included from /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h:20,
                 from /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h:12:
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/include/llvm/Target/TargetLoweringObjectFile.h:30:7: note: forward declaration of ‘class llvm::MachineModuleInfo’
   30 | class MachineModuleInfo;
      |       ^~~~~~~~~~~~~~~~~
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp:113: error: ‘AArch64AuthMCExpr’ has not been declared
  113 |       AArch64AuthMCExpr::create(Sym, Discriminator, Key,
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp: At global scope:
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp:118: error: no declaration matches ‘llvm::MCSymbol* llvm::AArch64_ELFTargetObjectFile::getAuthPtrSlotSymbol(const llvm::TargetMachin
e&, llvm::MachineModuleInfo*, const llvm::MCSymbol*, llvm::AArch64PACKey::ID, uint16_t) const’
  118 | MCSymbol *AArch64_ELFTargetObjectFile::getAuthPtrSlotSymbol(
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp:118: note: no functions named ‘llvm::MCSymbol* llvm::AArch64_ELFTargetObjectFile::getAuthPtrSlotSymbol(const llvm::TargetMachine&, l
lvm::MachineModuleInfo*, const llvm::MCSymbol*, llvm::AArch64PACKey::ID, uint16_t) const’
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h:18:7: note: ‘class llvm::AArch64_ELFTargetObjectFile’ defined here
   18 | class AArch64_ELFTargetObjectFile : public TargetLoweringObjectFileELF {
      |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp:126: error: no declaration matches ‘llvm::MCSymbol* llvm::AArch64_MachoTargetObjectFile::getAuthPtrSlotSymbol(const llvm::TargetMach
ine&, llvm::MachineModuleInfo*, const llvm::MCSymbol*, llvm::AArch64PACKey::ID, uint16_t) const’
  126 | MCSymbol *AArch64_MachoTargetObjectFile::getAuthPtrSlotSymbol(
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h:58:13: note: candidate is: ‘llvm::MCSymbol* llvm::AArch64_MachoTargetObjectFile::getAuthPtrSlotSymbol(const llvm::TargetMachine&, llvm
::MachineModuleInfo*, const llvm::MCSymbol*, int) const’
   58 |   MCSymbol *getAuthPtrSlotSymbol(const TargetMachine &TM,
      |             ^~~~~~~~~~~~~~~~~~~~
/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h:35:7: note: ‘class llvm::AArch64_MachoTargetObjectFile’ defined here
   35 | class AArch64_MachoTargetObjectFile : public TargetLoweringObjectFileMachO {
      |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make[2]: *** [lib/Target/AArch64/CMakeFiles/LLVMAArch64CodeGen.dir/build.make:838: lib/Target/AArch64/CMakeFiles/LLVMAArch64CodeGen.dir/AArch64TargetObjectFile.cpp.o] Error 1

@casparvl
Copy link
Copy Markdown
Collaborator Author

If we want to look into the configuration flags: this is the current configure command

cmake  -DCMAKE_MESSAGE_LOG_LEVEL=STATUS -DCMAKE_INSTALL_LIBDIR:PATH=lib -DCMAKE_C_COMPILER=/tmp/eb-xo6kqppq/eb-md9n7zwq/tmpcvbzchjy/rpath_wrappers/gcc_wrapper/gcc -DCMAKE_CXX_COMPILER=/tmp/eb-xo6kqppq/eb-md9n7zwq/tmpcvbzchjy/rpath_wrappers/gxx_wrapper/g++ -DCMAKE_Fortran_COMPILER=/tmp/eb-xo6kqppq/eb-md9n7zwq/tmpcvbzchjy/rpath_wrappers/gfortran_wrapper/gfortran -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF -DCMAKE_VERBOSE_MAKEFILE=ON -DLLVM_INSTALL_UTILS=ON -DPython3_FIND_VIRTUALENV=STANDARD -DLIBCXX_ENABLE_STATIC=ON -DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=ON -DLIBCXXABI_ENABLE_STATIC=ON -DLIBUNWIND_ENABLE_STATIC=ON -DLLVM_ENABLE_RTTI=ON -DLLVM_REQUIRES_RTTI=ON -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=OFF -DLIBCXX_ENABLE_SHARED=OFF -DLIBCXXABI_ENABLE_SHARED=OFF -DLIBUNWIND_ENABLE_SHARED=OFF -DLLVM_BUILD_LLVM_DYLIB=OFF -DLLVM_LINK_LLVM_DYLIB=OFF -DCLANG_DEFAULT_LINKER=lld -DFLANG_DEFAULT_LINKER=lld -DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD='AArch64;AMDGPU' -DDEFAULT_SYSROOT=/cvmfs/software.eessi.io/versions/2025.06/compat/linux/aarch64 -DCMAKE_SYSROOT=/cvmfs/software.eessi.io/versions/2025.06/compat/linux/aarch64 -DCMAKE_INSTALL_PREFIX=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/software/ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1 -DLLVM_ENABLE_ASSERTIONS=OFF -DLLVM_ENABLE_LIBXML2=ON -DLLVM_ENABLE_FFI=ON -DFFI_INCLUDE_DIR=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/libffi/3.4.5-GCCcore-14.2.0/include -DFFI_LIBRARY_DIR=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/libffi/3.4.5-GCCcore-14.2.0/lib64 -DLLVM_ENABLE_ZLIB=ON -DLLVM_ENABLE_ZSTD=OFF -DLLDB_ENABLE_SWIG=OFF -DLIBOMP_OMPD_GDB_SUPPORT=OFF -DLLVM_ENABLE_Z3_SOLVER=ON -DLLVM_Z3_INSTALL_DIR=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/Z3/4.13.4-GCCcore-14.2.0 -DPYTHON_EXECUTABLE=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/Python/3.13.1-GCCcore-14.2.0/bin/python -DPython_EXECUTABLE=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/Python/3.13.1-GCCcore-14.2.0/bin/python -DPython3_EXECUTABLE=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/Python/3.13.1-GCCcore-14.2.0/bin/python -DRUNTIMES_CMAKE_ARGS='-DCMAKE_C_FLAGS=--gcc-install-dir=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/GCCcore/14.2.0/lib/gcc/aarch64-unknown-linux-gnu/14.2.0;-DCMAKE_CXX_FLAGS=--gcc-install-dir=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/GCCcore/14.2.0/lib/gcc/aarch64-unknown-linux-gnu/14.2.0;-DPYTHON_EXECUTABLE=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/Python/3.13.1-GCCcore-14.2.0/bin/python;-DPython_EXECUTABLE=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/Python/3.13.1-GCCcore-14.2.0/bin/python;-DPython3_EXECUTABLE=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/software/Python/3.13.1-GCCcore-14.2.0/bin/python;-DAMDDeviceLibs_DIR=/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.2/tools/device-libs/lib64/cmake/AMDDeviceLibs' -DLLVM_EXTERNAL_PROJECTS="device-libs" -DLLVM_EXTERNAL_DEVICE_LIBS_SOURCE_DIR=/tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/amd/device-libs -DLLVM_ENABLE_PER_TARGET_RUNTIME_DIR=ON -DCLANG_DEFAULT_RTLIB=compiler-rt -DCLANG_DEFAULT_UNWINDLIB=libgcc -DDEFAULT_ROCM_PATH=/cvmfs/software.eessi.io/versions/2025.06/software/linux/aarch64/generic/accel/amd/gfx90a/software/ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1 -DLIBOMP_COPY_EXPORTS=OFF -DCLANG_ENABLE_AMDCLANG=ON -DLLVM_ENABLE_PROJECTS='llvm;clang;lld' -DLLVM_ENABLE_RUNTIMES='compiler-rt;libunwind;libcxx;libcxxabi' /tmp/bot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm

@casparvl
Copy link
Copy Markdown
Collaborator Author

The build on nvidia-grace here fails with

[ 75%] Linking CXX executable ../../../bin/lli-child-target
cd /tmp/eessibot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm.obj.1/tools/lli/ChildTarget && /cvmfs/software
.eessi.io/versions/2025.06/software/linux/aarch64/nvidia/grace/software/CMake/3.31.3-GCCcore-14.2.0/bin/cmake -E cmake_link_sc
ript CMakeFiles/lli-child-target.dir/link.txt --verbose=1
/tmp/eessibot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AAr
ch64/GISel/AArch64InstructionSelector.cpp:6628: error: no declaration matches ‘bool {anonymous}::AArch64InstructionSelector::s
electPtrAuthGlobalValue(llvm::MachineInstr&, llvm::MachineRegisterInfo&) const’
 6628 | bool AArch64InstructionSelector::selectPtrAuthGlobalValue(
/tmp/eessibot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AAr
ch64/GISel/AArch64InstructionSelector.cpp:6628: note: no functions named ‘bool {anonymous}::AArch64InstructionSelector::select
PtrAuthGlobalValue(llvm::MachineInstr&, llvm::MachineRegisterInfo&) const’
/tmp/eessibot/easybuild/build/ROCmLLVM/19.0.0/GCCcore-14.2.0-ROCm-6.4.1/llvm-project-19.0.0-rocm-6.4.1.src/llvm/lib/Target/AAr
ch64/GISel/AArch64InstructionSelector.cpp:70: note: ‘class {anonymous}::AArch64InstructionSelector’ defined here
   70 | class AArch64InstructionSelector : public InstructionSelector {

Related upstream issue ROCm/llvm-project#275

See https://github.com/ROCm/ROCm/blob/rocm-6.4.1/.azuredevops/components/llvm-project.yml

I checked the suggested solution, and it completely misses the point. In their CI, they specify:

-DLLVM_TARGETS_TO_BUILD=AMDGPU;X86

Of course you don't get the ARM failures that way, because you're not supporting ARM targets that way. And of course, that is not the solution we want.

@casparvl casparvl changed the title Adding ROCm-LLVM {2025.06}[GCCcore/14.2.0] Adding ROCm-LLVM v19.0.0 Apr 30, 2026
@casparvl casparvl changed the title {2025.06}[GCCcore/14.2.0] Adding ROCm-LLVM v19.0.0 {2025.06}[GCCcore/14.2.0] Adding ROCm-LLVM v19.0.0 /w ROCm 6.4.1 Apr 30, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants