Skip to content

Adding ROCm-LLVM#1473

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

Adding ROCm-LLVM#1473
casparvl wants to merge 8 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
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-skylake_avx512
Building for: x86_64/intel/skylake_avx512 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150788

date job status comment
Apr 23 07:09:29 UTC 2026 submitted job id 150788 awaits release by job manager
Apr 23 07:10:30 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:23:46 UTC 2026 running job 150788 is running
Apr 23 13:39:51 UTC 2026 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-150788.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-skylake_avx512-accel-amd-gfx90a-17769514300.tar.zstsize: 1449 MiB (1520283016 bytes)
entries: 8528
modules under 2025.06/software/linux/x86_64/intel/skylake_avx512/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/skylake_avx512/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/skylake_avx512/accel/amd/gfx90a/reprod
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1/20260423_133641UTC
other under 2025.06/software/linux/x86_64/intel/skylake_avx512/accel/amd/gfx90a
no other files in tarball
Apr 23 13:39: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:x86-64-skylake+default
P: perf: 421.91 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-skylake+default
P: latency: 1.21 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-skylake+default
P: latency: 1.71 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-skylake+default
P: latency: 0.27 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-skylake+default
P: bandwidth: 10781.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-150788.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/150789

date job status comment
Apr 23 07:09:33 UTC 2026 submitted job id 150789 awaits release by job manager
Apr 23 07:10:20 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:12:08 UTC 2026 running job 150789 is running
Apr 23 10:10:40 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150789.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 23 10:10:40 UTC 2026 test result
😢 FAILURE (click triangle for details)
Reason
Failed for unknown reason
Details
✅ job output file slurm-150789.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-deucalion
Copy link
Copy Markdown

eessi-bot-deucalion Bot commented Apr 23, 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/1164730

date job status comment
Apr 23 07:09:35 UTC 2026 submitted job id 1164730 awaits release by job manager
Apr 23 07:10:25 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:11:30 UTC 2026 running job 1164730 is running
Apr 23 09:07:15 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-1164730.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-17769347990.tar.zstsize: 0 MiB (22 bytes)
entries: 0
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
no other files in tarball
Apr 23 09:07:15 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_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.88 us (r:0, l:None, u:None)
[ OK ] (4/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: 7581.17 MB/s (r:0, l:None, u:None)
[ OK ] (5/5) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/22Jul2025-foss-2024a-kokkos %scale=1_node /ade8cad7 @BotBuildTests:a64fx+default
P: perf: 555.745 timesteps/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-1164730.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 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/150790

date job status comment
Apr 23 07:09:38 UTC 2026 submitted job id 150790 awaits release by job manager
Apr 23 07:10:25 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:22:12 UTC 2026 running job 150790 is running
Apr 23 09:54:25 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150790.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 23 09:54:25 UTC 2026 test result
😢 FAILURE (click triangle for details)
Reason
Failed for unknown reason
Details
✅ job output file slurm-150790.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-jsc
Copy link
Copy Markdown

eessi-bot-jsc Bot commented Apr 23, 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/14680666

date job status comment
Apr 23 07:09:39 UTC 2026 submitted job id 14680666 awaits release by job manager
Apr 23 07:10:04 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:11:10 UTC 2026 running job 14680666 is running
Apr 23 07:48:31 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-14680666.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-17769299990.tar.gzsize: 0 MiB (45 bytes)
entries: 0
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
no other files in tarball
Apr 23 07:48:31 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: 1520.083 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.46 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.25 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.26 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: 18913.73 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-14680666.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 23, 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/150791

date job status comment
Apr 23 07:09:42 UTC 2026 submitted job id 150791 awaits release by job manager
Apr 23 07:10:15 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:22:03 UTC 2026 running job 150791 is running
Apr 23 14:12:59 UTC 2026 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-150791.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-cascadelake-accel-amd-gfx90a-17769533490.tar.zstsize: 1449 MiB (1520155891 bytes)
entries: 8528
modules under 2025.06/software/linux/x86_64/intel/cascadelake/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/cascadelake/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/cascadelake/accel/amd/gfx90a/reprod
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1/20260423_140844UTC
other under 2025.06/software/linux/x86_64/intel/cascadelake/accel/amd/gfx90a
no other files in tarball
Apr 23 14:12:59 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-cascadelake+default
P: perf: 231.154 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-cascadelake+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-cascadelake+default
P: latency: 2.0 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-cascadelake+default
P: latency: 0.26 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-cascadelake+default
P: bandwidth: 10030.49 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-150791.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/150792

date job status comment
Apr 23 07:09:47 UTC 2026 submitted job id 150792 awaits release by job manager
Apr 23 07:10:35 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:25:24 UTC 2026 running job 150792 is running
Apr 23 10:06:48 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150792.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 23 10:06:48 UTC 2026 test result
😢 FAILURE (click triangle for details)
Reason
Failed for unknown reason
Details
✅ job output file slurm-150792.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: generic
Building for: x86_64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150793

date job status comment
Apr 23 07:09:51 UTC 2026 submitted job id 150793 awaits release by job manager
Apr 23 07:10:09 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:12:03 UTC 2026 running job 150793 is running
Apr 23 10:06:46 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150793.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 23 10:06:46 UTC 2026 test result
😢 FAILURE (click triangle for details)
Reason
Failed for unknown reason
Details
✅ job output file slurm-150793.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: generic
Building for: aarch64/generic and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150794

date job status comment
Apr 23 07:09:57 UTC 2026 submitted job id 150794 awaits release by job manager
Apr 23 07:11:44 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:26:29 UTC 2026 running job 150794 is running
Apr 23 08:08:33 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150794.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-17769314450.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 23 08:08:33 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: 658.172 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.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: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: 15860.09 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-150794.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 23, 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/150795

date job status comment
Apr 23 07:10:01 UTC 2026 submitted job id 150795 awaits release by job manager
Apr 23 07:11:49 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:26:34 UTC 2026 running job 150795 is running
Apr 23 08:08:35 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150795.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-17769314630.tar.zstsize: 0 MiB (22 bytes)
entries: 0
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
no other files in tarball
Apr 23 08:08: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:aarch64-neoverse_n1+default
P: perf: 659.853 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.95 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.44 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.27 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: 16280.93 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-150795.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 23, 2026

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

date job status comment
Apr 23 07:10:06 UTC 2026 submitted job id 150796 awaits release by job manager
Apr 23 07:11:54 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 07:26:39 UTC 2026 running job 150796 is running
Apr 23 08:01:40 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150796.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_v1-accel-amd-gfx90a-17769310560.tar.zstsize: 0 MiB (22 bytes)
entries: 0
modules under 2025.06/software/linux/aarch64/neoverse_v1/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/aarch64/neoverse_v1/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/aarch64/neoverse_v1/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/aarch64/neoverse_v1/accel/amd/gfx90a
no other files in tarball
Apr 23 08:01:40 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_v1+default
P: perf: 977.353 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_v1+default
P: latency: 1.61 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_v1+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-neoverse_v1+default
P: latency: 0.26 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_v1+default
P: bandwidth: 28275.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-150796.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@casparvl
Copy link
Copy Markdown
Collaborator Author

casparvl commented Apr 23, 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

@casparvl
Copy link
Copy Markdown
Collaborator Author

casparvl commented Apr 23, 2026

I really don't understand what's going on here. In e.g. #1473 (comment) . I have checked the logfile during the build. It was at stage 3 of the ROCm-LLVM build. And now, the logfile is super short, it doesn't contain any of the building output. It's alsmost like some command overwrites instead of appends, and then all the past things are lost - except this cannot be true because I do see the same things that are normally at the start of the log.

Actually, it seems that it has reinvoked the builds:

Starting bot-build.slurm
could not find cfg/export_vars.sh script in '/project/60006/SHARED/jobs/2026.04/pr_1473/event_5657d0d0-3ee3-11f1-9e94-4939e4c8
9ba9/run_000/x86_64/amd/zen3/amd/gfx90a/eessi.io-2025.06-software', skipping
Overwriting current TMPDIR '/tmp' with the value '/tmp/bot/EESSI/eessi_job.ipIW778U6B', as configured in cfg/job.cfg
Site config script defined as '' does not exist; ignoring it
bot/build.sh script found in '/project/60006/SHARED/jobs/2026.04/pr_1473/event_5657d0d0-3ee3-11f1-9e94-4939e4c89ba9/run_000/x8
6_64/amd/zen3/amd/gfx90a/eessi.io-2025.06-software', so running it!
fatal: destination path 'software-layer-scripts' already exists and is not an empty directory.
bot/build.sh finished

The fact that software-layer-scripts already exists is very suspicious. I know for a fact that it already did this succesfully before, now it just seems to re-do it?

Edit: @bedroge had the answer - builds are going out of memory, crash the node, and are being requeued. The second time the job runs, the log file is overwritten, and the software-layer-scripts dir already exists (resulting in the error in the log).

@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

@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: amd-zen3
Building for: x86_64/amd/zen3 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150797

date job status comment
Apr 23 13:18:04 UTC 2026 submitted job id 150797 awaits release by job manager
Apr 23 13:19:00 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 13:25:12 UTC 2026 running job 150797 is running
Apr 23 13:26:35 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150797.out
✅ no message matching FATAL:
❌ found 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
eessi-2025.06-software-linux-x86_64-amd-zen3-accel-amd-gfx90a-17769506750.tar.zstsize: 0 MiB (22 bytes)
entries: 0
modules under 2025.06/software/linux/x86_64/amd/zen3/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/x86_64/amd/zen3/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/x86_64/amd/zen3/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/x86_64/amd/zen3/accel/amd/gfx90a
no other files in tarball
Apr 23 13:26: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-zen3+default
P: perf: 306.779 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-zen3+default
P: latency: 0.82 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-zen3+default
P: latency: 1.26 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-zen3+default
P: latency: 0.16 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-zen3+default
P: bandwidth: 14387.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-150797.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=x86_64/amd/zen3 for:arch=x86_64/amd/zen3,accel=amd/gfx90a

@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: amd-zen3
Building for: x86_64/amd/zen3 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150798

date job status comment
Apr 23 14:42:13 UTC 2026 submitted job id 150798 awaits release by job manager
Apr 23 14:42:56 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 14:48:03 UTC 2026 running job 150798 is running
Apr 23 14:50:09 UTC 2026 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-150798.out
✅ no message matching FATAL:
❌ found 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
eessi-2025.06-software-linux-x86_64-amd-zen3-accel-amd-gfx90a-17769556830.tar.zstsize: 0 MiB (22 bytes)
entries: 0
modules under 2025.06/software/linux/x86_64/amd/zen3/accel/amd/gfx90a/modules/all
no module files in tarball
software under 2025.06/software/linux/x86_64/amd/zen3/accel/amd/gfx90a/software
no software packages in tarball
reprod directories under 2025.06/software/linux/x86_64/amd/zen3/accel/amd/gfx90a/reprod
no reprod directories in tarball
other under 2025.06/software/linux/x86_64/amd/zen3/accel/amd/gfx90a
no other files in tarball
Apr 23 14:50:09 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-zen3+default
P: perf: 301.612 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-zen3+default
P: latency: 0.79 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-zen3+default
P: latency: 1.28 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-zen3+default
P: latency: 0.16 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-zen3+default
P: bandwidth: 14847.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-150798.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=x86_64/amd/zen3 for:arch=x86_64/amd/zen3,accel=amd/gfx90a

@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: amd-zen3
Building for: x86_64/amd/zen3 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150799

date job status comment
Apr 23 15:07:04 UTC 2026 submitted job id 150799 awaits release by job manager
Apr 23 15:07:18 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 15:08:24 UTC 2026 running job 150799 is running
Apr 23 23:27:09 UTC 2026 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-150799.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-zen3-accel-amd-gfx90a-17769866730.tar.zstsize: 1462 MiB (1533440878 bytes)
entries: 8528
modules under 2025.06/software/linux/x86_64/amd/zen3/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/zen3/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/zen3/accel/amd/gfx90a/reprod
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1/20260423_232405UTC
other under 2025.06/software/linux/x86_64/amd/zen3/accel/amd/gfx90a
no other files in tarball
Apr 23 23:27:09 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-zen3+default
P: perf: 532.179 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-zen3+default
P: latency: 0.79 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-zen3+default
P: latency: 1.1 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-zen3+default
P: latency: 0.17 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-zen3+default
P: bandwidth: 14628.09 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-150799.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=zen2 for:arch=x86_64/amd/zen2,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/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/sapphirerapids for:arch=x86_64/intel/sapphirerapids,accel=amd/gfx90a

@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: amd-zen2
Building for: x86_64/amd/zen2 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150800

date job status comment
Apr 23 23:40:34 UTC 2026 submitted job id 150800 awaits release by job manager
Apr 23 23:41:18 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 23:46:46 UTC 2026 running job 150800 is running
Apr 24 09:37:46 UTC 2026 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-150800.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-zen2-accel-amd-gfx90a-17770232810.tar.zstsize: 1450 MiB (1521021803 bytes)
entries: 8528
modules under 2025.06/software/linux/x86_64/amd/zen2/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/zen2/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/zen2/accel/amd/gfx90a/reprod
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1/20260424_093410UTC
other under 2025.06/software/linux/x86_64/amd/zen2/accel/amd/gfx90a
no other files in tarball
Apr 24 09:37: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:x86-64-zen2+default
P: perf: 432.342 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-zen2+default
P: latency: 1.33 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-zen2+default
P: latency: 2.05 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-zen2+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-zen2+default
P: bandwidth: 8108.58 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-150800.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: amd-zen4
Building for: x86_64/amd/zen4 and accelerator amd/gfx90a
Job dir: /project/def-users/SHARED/jobs/2026.04/pr_1473/150801

date job status comment
Apr 23 23:40:38 UTC 2026 submitted job id 150801 awaits release by job manager
Apr 23 23:41:23 UTC 2026 released job awaits launch by Slurm scheduler
Apr 23 23:46:51 UTC 2026 running job 150801 is running
Apr 24 05:33:44 UTC 2026 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-150801.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-zen4-accel-amd-gfx90a-17770086160.tar.zstsize: 1485 MiB (1557357007 bytes)
entries: 8528
modules under 2025.06/software/linux/x86_64/amd/zen4/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/zen4/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/zen4/accel/amd/gfx90a/reprod
ROCm-LLVM/19.0.0-GCCcore-14.2.0-ROCm-6.4.1/20260424_052950UTC
other under 2025.06/software/linux/x86_64/amd/zen4/accel/amd/gfx90a
no other files in tarball
Apr 24 05:33: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:x86-64-zen4+default
P: perf: 1137.516 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-zen4+default
P: latency: 1.42 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-zen4+default
P: latency: 3.25 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-zen4+default
P: latency: 0.15 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-zen4+default
P: bandwidth: 14028.69 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-150801.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 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

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.

2 participants