Skip to content

Conversation

@casparvl
Copy link
Collaborator

@casparvl casparvl commented Aug 28, 2025

Checklist for supported CPU-GPU combos (by @boegel):

CPU target (generic) cc70 cc80 cc90
aarch64
x86_64
CPU target (aarch64) cc70 cc80 cc90
neoverse_n1
neoverse_v1
nvidia/grace #1166 (comment)
CPU target (x86_64/amd) cc70 cc80 cc90
zen2 #1166 (comment) (cross-compiled)
zen3 #1166 (comment)
zen4 #1166 (comment)
CPU target (x86_64/intel) cc70 cc80 cc90
haswell
skylake_avx512
cascadelake #1166 (comment)
icelake #1166 (comment)
sapphirerapids

@casparvl
Copy link
Collaborator Author

Retrying after having implemented this suggestion to have the bot set export FI_PROVIDER="^psm3" for libfabric.

bot: build repo:eessi.io-2023.06-software instance:eessi-bot-surf for:arch=x86_64/intel/icelake,accel=nvidia/cc80

@eessi-bot-surf
Copy link

eessi-bot-surf bot commented Aug 28, 2025

New job on instance eessi-bot-surf for repository eessi.io-2023.06-software
Building on: intel-icelake and accelerator nvidia/cc80
Building for: x86_64/intel/icelake and accelerator nvidia/cc80
Job dir: /projects/eessibot/eessi-bot-surf/jobs/2025.08/pr_1166/14349790

date job status comment
Aug 28 15:03:39 UTC 2025 submitted job id 14349790 will be eligible to start in about 20 seconds
Aug 28 15:03:49 UTC 2025 received job awaits launch by Slurm scheduler
Aug 28 15:04:15 UTC 2025 running job 14349790 is running
Aug 28 15:42:04 UTC 2025 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-14349790.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-icelake-accel-nvidia-cc80-17563956540.tar.gzsize: 0 MiB (45 bytes)
entries: 0
modules under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc80/modules/all
no module files in tarball
software under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc80/software
no software packages in tarball
reprod directories under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc80
no other files in tarball
Aug 28 15:42:04 UTC 2025 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ SKIP ] (1/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (2/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (3/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (4/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (5/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (6/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (7/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (8/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ PASSED ] Ran 0/8 test case(s) from 8 check(s) (0 failure(s), 8 skipped, 0 aborted)
Details
✅ job output file slurm-14349790.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@laraPPr
Copy link
Collaborator

laraPPr commented Aug 28, 2025

@casparvl how did you add the suggestion?

@casparvl
Copy link
Collaborator Author

I added a SitePackage.lua to the host-injections dir of the bot:

$ cat /projects/eessibot/eessi-bot-surf/SHARED/host-injections/2023.06/.lmod/SitePackage.lua
require("strict")
local hook = require("Hook")

-- LmodMessage("Load bot-specific SitePackage.lua")

local function eessi_bot_libfabric_set_psm3_devices_hook(t)
    local simpleName = string.match(t.modFullName, "(.-)/")
    -- we may want to be more specific in the future, and only do this for specific versions of libfabric
    if simpleName == 'libfabric' then
        -- set environment variables PSM3_DEVICES as workaround for MPI applications hanging in libfabric's PSM3 provider
        -- crf. https://github.com/easybuilders/easybuild-easyconfigs/issues/18925
        -- setenv('PSM3_DEVICES', 'self,shm')
        setenv('FI_PROVIDER', '^psm3')
    end
end

-- combine all load hook functions into a single one
function site_specific_load_hook(t)
    eessi_bot_libfabric_set_psm3_devices_hook(t)
end

local function combined_load_hook(t)
    -- Assuming this was called from EESSI's SitePackage.lua, this should be defined and thus run
    if eessi_load_hook ~= nil then
        eessi_load_hook(t)
    end
    site_specific_load_hook(t)
end

hook.register("load", combined_load_hook)

@laraPPr
Copy link
Collaborator

laraPPr commented Aug 28, 2025

14349790 failed the CUDA sanity check so that it is not getting stuck with the changes made to the .SitePackage.lua file.

ERROR: Installation of GROMACS-2024.4-foss-2023b-CUDA-12.4.0.eb failed: "Sanity check failed: \nFiles missing CUDA PTX code: 12.\nCheck the build log for the 'CUDA sanity check detailed report' for a full list of files that failed to pass the sanity check.

@casparvl
Copy link
Collaborator Author

== 2025-08-28 17:40:45,511 easyblock.py:3719 INFO CUDA sanity check detailed report:
12 files missing PTX code for the highest configured CUDA Compute Capability:
  lib/libgromacs_mpi.so
  lib/libgromacs_mpi.so.9
  lib/libgromacs_mpi.so.9.0.0
  lib/libgromacs.so
  lib/libgromacs.so.9
  lib/libgromacs.so.9.0.0
  lib64/libgromacs_mpi.so
  lib64/libgromacs_mpi.so.9
  lib64/libgromacs_mpi.so.9.0.0
  lib64/libgromacs.so
  lib64/libgromacs.so.9
  lib64/libgromacs.so.9.0.0

So, it's only PTX code that's missing, device code is there. I'll add the option to ignore this and retry.

@casparvl
Copy link
Collaborator Author

bot: build repo:eessi.io-2023.06-software instance:eessi-bot-surf for:arch=x86_64/intel/icelake,accel=nvidia/cc80

@eessi-bot-surf
Copy link

eessi-bot-surf bot commented Aug 28, 2025

New job on instance eessi-bot-surf for repository eessi.io-2023.06-software
Building on: intel-icelake and accelerator nvidia/cc80
Building for: x86_64/intel/icelake and accelerator nvidia/cc80
Job dir: /projects/eessibot/eessi-bot-surf/jobs/2025.08/pr_1166/14355215

date job status comment
Aug 28 19:24:07 UTC 2025 submitted job id 14355215 will be eligible to start in about 20 seconds
Aug 28 19:24:17 UTC 2025 received job awaits launch by Slurm scheduler
Aug 28 19:24:31 UTC 2025 running job 14355215 is running
Aug 28 20:02:44 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-14355215.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-icelake-accel-nvidia-cc80-17564112890.tar.gzsize: 27 MiB (28642511 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc80/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc80/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc80
no other files in tarball
Aug 28 20:02:44 UTC 2025 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ SKIP ] (1/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (2/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (3/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (4/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (5/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (6/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (7/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (8/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ PASSED ] Ran 0/8 test case(s) from 8 check(s) (0 failure(s), 8 skipped, 0 aborted)
Details
✅ job output file slurm-14355215.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:29 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-intel-icelake-accel-nvidia-cc80-17564112890.tar.gz to S3 bucket succeeded

@casparvl
Copy link
Collaborator Author

bot: build repo:eessi.io-2023.06-software instance:eessi-bot-surf for:arch=x86_64/amd/zen4,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-vsc-ugent for:arch=x86_64/intel/cascadelake,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-vsc-ugent for:arch=x86_64/amd/zen2,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-vsc-ugent for:arch=x86_64/amd/zen3,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-jsc for:arch=aarch64/nvidia/grace,accel=nvidia/cc90

@eessi-bot-surf
Copy link

eessi-bot-surf bot commented Aug 28, 2025

New job on instance eessi-bot-surf for repository eessi.io-2023.06-software
Building on: amd-zen4 and accelerator nvidia/cc90
Building for: x86_64/amd/zen4 and accelerator nvidia/cc90
Job dir: /projects/eessibot/eessi-bot-surf/jobs/2025.08/pr_1166/14355614

date job status comment
Aug 28 20:29:12 UTC 2025 submitted job id 14355614 will be eligible to start in about 20 seconds
Aug 28 20:29:24 UTC 2025 received job awaits launch by Slurm scheduler
Aug 28 20:29:47 UTC 2025 running job 14355614 is running
Aug 28 21:07:31 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-14355614.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-amd-zen4-accel-nvidia-cc90-17564151890.tar.gzsize: 27 MiB (28575482 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc90
no other files in tarball
Aug 28 21:07:31 UTC 2025 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ SKIP ] (1/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (2/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (3/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (4/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (5/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (6/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (7/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (8/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ PASSED ] Ran 0/8 test case(s) from 8 check(s) (0 failure(s), 8 skipped, 0 aborted)
Details
✅ job output file slurm-14355614.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:34:02 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-amd-zen4-accel-nvidia-cc90-17564151890.tar.gz to S3 bucket succeeded

@gpu-bot-ugent
Copy link

gpu-bot-ugent bot commented Aug 28, 2025

New job on instance eessi-bot-vsc-ugent for repository eessi.io-2023.06-software
Building on: intel-cascadelake and accelerator nvidia/cc70
Building for: x86_64/intel/cascadelake and accelerator nvidia/cc70
Job dir: /scratch/gent/vo/002/gvo00211/SHARED/jobs/2025.08/pr_1166/40716992

date job status comment
Aug 28 20:29:13 UTC 2025 submitted job id 40716992 awaits release by job manager
Aug 28 20:29:43 UTC 2025 released job awaits launch by Slurm scheduler
Aug 28 20:31:50 UTC 2025 running job 40716992 is running
Aug 29 07:58:30 UTC 2025 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job40716992.result does not exist in job directory, or parsing it failed.
  • No artefacts were found/reported.
Aug 29 07:58:30 UTC 2025 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job40716992.test does not exist in job directory, or parsing it failed.

@eessi-bot-jsc
Copy link

eessi-bot-jsc bot commented Aug 28, 2025

New job on instance eessi-bot-jsc for repository eessi.io-2023.06-software
Building on: nvidia-grace and accelerator nvidia/cc90
Building for: aarch64/nvidia/grace and accelerator nvidia/cc90
Job dir: /p/project1/ceasybuilders/eessibot/jobs/2025.08/pr_1166/14026749

date job status comment
Aug 28 20:29:18 UTC 2025 submitted job id 14026749 awaits release by job manager
Aug 28 20:30:22 UTC 2025 released job awaits launch by Slurm scheduler
Aug 28 20:31:25 UTC 2025 running job 14026749 is running
Aug 28 21:05:25 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-14026749.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-nvidia-grace-accel-nvidia-cc90-17564149190.tar.gzsize: 25 MiB (27215978 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/nvidia/grace/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/nvidia/grace/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/nvidia/grace/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/nvidia/grace/accel/nvidia/cc90
no other files in tarball
Aug 28 21:05:25 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-14026749.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@gpu-bot-ugent
Copy link

gpu-bot-ugent bot commented Aug 28, 2025

New job on instance eessi-bot-vsc-ugent for repository eessi.io-2023.06-software
Building on: amd-zen3 and accelerator nvidia/cc80
Building for: x86_64/amd/zen3 and accelerator nvidia/cc80
Job dir: /scratch/gent/vo/002/gvo00211/SHARED/jobs/2025.08/pr_1166/15526159

date job status comment
Aug 28 20:29:18 UTC 2025 submitted job id 15526159 awaits release by job manager
Aug 28 20:29:40 UTC 2025 released job awaits launch by Slurm scheduler
Aug 28 20:31:46 UTC 2025 running job 15526159 is running
Aug 29 07:58:28 UTC 2025 finished
🤷 UNKNOWN (click triangle for detailed information)
  • Job results file _bot_job15526159.result does not exist in job directory, or parsing it failed.
  • No artefacts were found/reported.
Aug 29 07:58:28 UTC 2025 test result
🤷 UNKNOWN (click triangle for detailed information)
  • Job test file _bot_job15526159.test does not exist in job directory, or parsing it failed.

@laraPPr
Copy link
Collaborator

laraPPr commented Aug 29, 2025

I have not updated the sitepackage.lua so I'm gonna cancel the jobs running at ugent.

@laraPPr
Copy link
Collaborator

laraPPr commented Aug 29, 2025

bot: build repo:eessi.io-2023.06-software instance:eessi-bot-vsc-ugent for:arch=x86_64/amd/zen3,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-vsc-ugent for:arch=x86_64/intel/cascadelake,accel=nvidia/cc70

@gpu-bot-ugent
Copy link

gpu-bot-ugent bot commented Aug 29, 2025

New job on instance eessi-bot-vsc-ugent for repository eessi.io-2023.06-software
Building on: amd-zen3 and accelerator nvidia/cc80
Building for: x86_64/amd/zen3 and accelerator nvidia/cc80
Job dir: /scratch/gent/vo/002/gvo00211/SHARED/jobs/2025.08/pr_1166/15526224

date job status comment
Aug 29 08:54:12 UTC 2025 submitted job id 15526224 awaits release by job manager
Aug 29 08:55:04 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 08:57:13 UTC 2025 running job 15526224 is running
Aug 29 09:34:48 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-15526224.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-amd-zen3-accel-nvidia-cc80-17564599690.tar.gzsize: 29 MiB (30816240 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc80/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc80/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc80
no other files in tarball
Aug 29 09:34:48 UTC 2025 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ SKIP ] ( 1/10) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 2/10) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 3/10) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 4/10) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 5/10) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] ( 6/10) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] ( 7/10) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] ( 8/10) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ OK ] ( 9/10) EESSI_LAMMPS_lj %device_type=gpu %module_name=LAMMPS/2Aug2023_update2-foss-2023a-kokkos-CUDA-12.1.1 %scale=1_4_node /497af4b1 @BotBuildTests:x86_64_amd_zen3_accel_nvidia_cc80+default
P: perf: 4294.676 timesteps/s (r:0, l:None, u:None)
[ OK ] (10/10) EESSI_GROMACS %benchmark_info=HECBioSim/Crambin %nb_impl=gpu %scale=1_4_node %module_name=GROMACS/2024.4-foss-2023b-CUDA-12.4.0 /418dba95 @BotBuildTests:x86_64_amd_zen3_accel_nvidia_cc80+default
P: perf: 667.019 ns/day (r:0, l:None, u:None)
[ PASSED ] Ran 2/10 test case(s) from 10 check(s) (0 failure(s), 8 skipped, 0 aborted)
Details
✅ job output file slurm-15526224.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:05 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-amd-zen3-accel-nvidia-cc80-17564599690.tar.gz to S3 bucket succeeded

@gpu-bot-ugent
Copy link

gpu-bot-ugent bot commented Aug 29, 2025

New job on instance eessi-bot-vsc-ugent for repository eessi.io-2023.06-software
Building on: intel-cascadelake and accelerator nvidia/cc70
Building for: x86_64/intel/cascadelake and accelerator nvidia/cc70
Job dir: /scratch/gent/vo/002/gvo00211/SHARED/jobs/2025.08/pr_1166/40717081

date job status comment
Aug 29 08:54:17 UTC 2025 submitted job id 40717081 awaits release by job manager
Aug 29 08:55:07 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 08:57:16 UTC 2025 running job 40717081 is running
Aug 29 09:36:51 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-40717081.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-cascadelake-accel-nvidia-cc70-17564600310.tar.gzsize: 26 MiB (28287140 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc70/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc70/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc70/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc70
no other files in tarball
Aug 29 09:36:51 UTC 2025 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ SKIP ] (1/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (2/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (3/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (4/8) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] (5/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (6/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (7/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ SKIP ] (8/8) Skipping test : 1 GPU(s) available for this test case, need exactly 2
[ PASSED ] Ran 0/8 test case(s) from 8 check(s) (0 failure(s), 8 skipped, 0 aborted)
Details
✅ job output file slurm-40717081.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:15 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-intel-cascadelake-accel-nvidia-cc70-17564600310.tar.gz to S3 bucket succeeded

@casparvl
Copy link
Collaborator Author

Doing the remainder of the builds (cross-compilations):

bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=zen2 for:arch=x86_64/amd/zen2,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=zen2 for:arch=x86_64/amd/zen2,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=zen3 for:arch=x86_64/amd/zen3,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=zen3 for:arch=x86_64/amd/zen3,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=zen4 for:arch=x86_64/amd/zen4,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=zen4 for:arch=x86_64/amd/zen4,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=skylake_avx512 for:arch=x86_64/intel/skylake_avx512,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=skylake_avx512 for:arch=x86_64/intel/skylake_avx512,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=skylake_avx512 for:arch=x86_64/intel/skylake_avx512,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=haswell for:arch=x86_64/intel/haswell,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=haswell for:arch=x86_64/intel/haswell,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=haswell for:arch=x86_64/intel/haswell,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=icelake for:arch=x86_64/intel/icelake,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=icelake for:arch=x86_64/intel/icelake,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=cascadelake for:arch=x86_64/intel/cascadelake,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=cascadelake for:arch=x86_64/intel/cascadelake,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=sapphirerapids for:arch=x86_64/intel/sapphirerapids,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=sapphirerapids for:arch=x86_64/intel/sapphirerapids,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=sapphirerapids for:arch=x86_64/intel/sapphirerapids,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=x86_64/generic for:arch=x86_64/generic,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=x86_64/generic for:arch=x86_64/generic,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=x86_64/generic for:arch=x86_64/generic,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=aarch64/generic for:arch=aarch64/generic,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=neoverse_n1 for:arch=aarch64/neoverse_n1,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=neoverse_n1 for:arch=aarch64/neoverse_n1,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=neoverse_n1 for:arch=aarch64/neoverse_n1,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=neoverse_v1 for:arch=aarch64/neoverse_v1,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=neoverse_v1 for:arch=aarch64/neoverse_v1,accel=nvidia/cc80
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=neoverse_v1 for:arch=aarch64/neoverse_v1,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-jsc on:arch=aarch64/nvidia/grace for:arch=aarch64/nvidia/grace,accel=nvidia/cc70
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-jsc on:arch=aarch64/nvidia/grace for:arch=aarch64/nvidia/grace,accel=nvidia/cc80

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: amd-zen2
Building for: x86_64/amd/zen2 and accelerator nvidia/cc70
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86304

date job status comment
Aug 29 11:43:19 UTC 2025 submitted job id 86304 awaits release by job manager
Aug 29 11:43:25 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 14:16:54 UTC 2025 running job 86304 is running
Aug 29 15:12:32 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86304.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-amd-zen2-accel-nvidia-cc70-17564802820.tar.gzsize: 29 MiB (30428088 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc70/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc70/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc70/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc70
no other files in tarball
Aug 29 15:12:32 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86304.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:07 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-amd-zen2-accel-nvidia-cc70-17564802820.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: amd-zen2
Building for: x86_64/amd/zen2 and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86305

date job status comment
Aug 29 11:43:23 UTC 2025 submitted job id 86305 awaits release by job manager
Aug 29 11:44:27 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:50:09 UTC 2025 running job 86305 is running
Aug 29 12:44:54 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86305.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-amd-zen2-accel-nvidia-cc90-17564714240.tar.gzsize: 29 MiB (30695453 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc90
no other files in tarball
Aug 29 12:44:54 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86305.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:16 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-amd-zen2-accel-nvidia-cc90-17564714240.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: amd-zen3
Building for: x86_64/amd/zen3 and accelerator nvidia/cc70
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86306

date job status comment
Aug 29 11:43:27 UTC 2025 submitted job id 86306 awaits release by job manager
Aug 29 11:44:31 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:50:14 UTC 2025 running job 86306 is running
Aug 29 12:31:40 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86306.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-amd-zen3-accel-nvidia-cc70-17564706330.tar.gzsize: 29 MiB (30434897 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc70/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc70/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc70/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc70
no other files in tarball
Aug 29 12:31:40 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86306.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:25 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-amd-zen3-accel-nvidia-cc70-17564706330.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: amd-zen3
Building for: x86_64/amd/zen3 and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86307

date job status comment
Aug 29 11:43:31 UTC 2025 submitted job id 86307 awaits release by job manager
Aug 29 11:44:29 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:50:12 UTC 2025 running job 86307 is running
Aug 29 12:31:38 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86307.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-amd-zen3-accel-nvidia-cc90-17564706200.tar.gzsize: 29 MiB (30701947 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/amd/zen3/accel/nvidia/cc90
no other files in tarball
Aug 29 12:31:38 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86307.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:34 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-amd-zen3-accel-nvidia-cc90-17564706200.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: amd-zen4
Building for: x86_64/amd/zen4 and accelerator nvidia/cc70
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86308

date job status comment
Aug 29 11:43:35 UTC 2025 submitted job id 86308 awaits release by job manager
Aug 29 11:44:36 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:51:57 UTC 2025 running job 86308 is running
Aug 29 12:23:06 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86308.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-amd-zen4-accel-nvidia-cc70-17564700830.tar.gzsize: 26 MiB (28302030 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc70/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc70/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc70/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc70
no other files in tarball
Aug 29 12:23:06 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86308.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:44 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-amd-zen4-accel-nvidia-cc70-17564700830.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: amd-zen4
Building for: x86_64/amd/zen4 and accelerator nvidia/cc80
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86309

date job status comment
Aug 29 11:43:39 UTC 2025 submitted job id 86309 awaits release by job manager
Aug 29 11:44:33 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:50:16 UTC 2025 running job 86309 is running
Aug 29 12:21:39 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86309.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-amd-zen4-accel-nvidia-cc80-17564699800.tar.gzsize: 27 MiB (28669921 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc80/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc80/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/amd/zen4/accel/nvidia/cc80
no other files in tarball
Aug 29 12:21:39 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86309.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:53 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-amd-zen4-accel-nvidia-cc80-17564699800.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: intel-skylake_avx512
Building for: x86_64/intel/skylake_avx512 and accelerator nvidia/cc70
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86310

date job status comment
Aug 29 11:43:43 UTC 2025 submitted job id 86310 awaits release by job manager
Aug 29 11:44:57 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:58:18 UTC 2025 running job 86310 is running
Aug 29 12:38:45 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86310.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-skylake_avx512-accel-nvidia-cc70-17564710610.tar.gzsize: 26 MiB (28257576 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc70/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc70/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc70/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc70
no other files in tarball
Aug 29 12:38:45 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86310.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:34:02 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-intel-skylake_avx512-accel-nvidia-cc70-17564710610.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: intel-skylake_avx512
Building for: x86_64/intel/skylake_avx512 and accelerator nvidia/cc80
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86311

date job status comment
Aug 29 11:43:47 UTC 2025 submitted job id 86311 awaits release by job manager
Aug 29 11:44:55 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:57:01 UTC 2025 running job 86311 is running
Aug 29 12:38:43 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86311.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-skylake_avx512-accel-nvidia-cc80-17564710580.tar.gzsize: 27 MiB (28625797 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc80/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc80/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc80
no other files in tarball
Aug 29 12:38:43 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86311.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:34:12 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-intel-skylake_avx512-accel-nvidia-cc80-17564710580.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: intel-skylake_avx512
Building for: x86_64/intel/skylake_avx512 and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86312

date job status comment
Aug 29 11:43:52 UTC 2025 submitted job id 86312 awaits release by job manager
Aug 29 11:44:53 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:55:44 UTC 2025 running job 86312 is running
Aug 29 12:37:23 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86312.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-skylake_avx512-accel-nvidia-cc90-17564709640.tar.gzsize: 27 MiB (28525007 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/skylake_avx512/accel/nvidia/cc90
no other files in tarball
Aug 29 12:37:23 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86312.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:34:21 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-intel-skylake_avx512-accel-nvidia-cc90-17564709640.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: generic
Building for: x86_64/generic and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86325

date job status comment
Aug 29 11:44:45 UTC 2025 submitted job id 86325 awaits release by job manager
Aug 29 11:46:24 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 14:09:11 UTC 2025 running job 86325 is running
Aug 29 14:48:46 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86325.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-generic-accel-nvidia-cc90-17564788920.tar.gzsize: 27 MiB (28398167 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/generic/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/generic/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/generic/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/generic/accel/nvidia/cc90
no other files in tarball
Aug 29 14:48:46 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86325.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:35:50 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-generic-accel-nvidia-cc90-17564788920.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: generic
Building for: aarch64/generic and accelerator nvidia/cc70
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86326

date job status comment
Aug 29 11:44:49 UTC 2025 submitted job id 86326 awaits release by job manager
Aug 29 11:46:07 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:59:27 UTC 2025 running job 86326 is running
Aug 29 12:37:21 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86326.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-generic-accel-nvidia-cc70-17564709380.tar.gzsize: 22 MiB (24053332 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc70/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc70/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc70/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc70
no other files in tarball
Aug 29 12:37:21 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86326.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:35:59 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-generic-accel-nvidia-cc70-17564709380.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: generic
Building for: aarch64/generic and accelerator nvidia/cc80
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86327

date job status comment
Aug 29 11:44:53 UTC 2025 submitted job id 86327 awaits release by job manager
Aug 29 11:46:05 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:59:25 UTC 2025 running job 86327 is running
Aug 29 12:37:20 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86327.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-generic-accel-nvidia-cc80-17564709350.tar.gzsize: 23 MiB (24415628 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc80/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc80/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc80
no other files in tarball
Aug 29 12:37:20 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86327.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:36:08 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-generic-accel-nvidia-cc80-17564709350.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: generic
Building for: aarch64/generic and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86328

date job status comment
Aug 29 11:44:58 UTC 2025 submitted job id 86328 awaits release by job manager
Aug 29 11:46:03 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 11:59:23 UTC 2025 running job 86328 is running
Aug 29 12:37:18 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86328.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-generic-accel-nvidia-cc90-17564709240.tar.gzsize: 23 MiB (24315327 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/generic/accel/nvidia/cc90
no other files in tarball
Aug 29 12:37:18 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86328.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:36:17 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-generic-accel-nvidia-cc90-17564709240.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: neoverse_n1
Building for: aarch64/neoverse_n1 and accelerator nvidia/cc70
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86329

date job status comment
Aug 29 11:45:02 UTC 2025 submitted job id 86329 awaits release by job manager
Aug 29 11:46:15 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 12:02:19 UTC 2025 running job 86329 is running
Aug 29 12:38:42 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86329.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-neoverse_n1-accel-nvidia-cc70-17564710840.tar.gzsize: 25 MiB (26868644 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc70/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc70/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc70/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc70
no other files in tarball
Aug 29 12:38:42 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86329.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:36:25 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-neoverse_n1-accel-nvidia-cc70-17564710840.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: neoverse_n1
Building for: aarch64/neoverse_n1 and accelerator nvidia/cc80
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86330

date job status comment
Aug 29 11:45:07 UTC 2025 submitted job id 86330 awaits release by job manager
Aug 29 11:46:12 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 12:02:16 UTC 2025 running job 86330 is running
Aug 29 12:39:59 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86330.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-neoverse_n1-accel-nvidia-cc80-17564711550.tar.gzsize: 25 MiB (27233605 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc80/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc80/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc80
no other files in tarball
Aug 29 12:39:59 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86330.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:36:34 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-neoverse_n1-accel-nvidia-cc80-17564711550.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: neoverse_n1
Building for: aarch64/neoverse_n1 and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86331

date job status comment
Aug 29 11:45:11 UTC 2025 submitted job id 86331 awaits release by job manager
Aug 29 11:46:10 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 12:00:51 UTC 2025 running job 86331 is running
Aug 29 12:38:40 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86331.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-neoverse_n1-accel-nvidia-cc90-17564710300.tar.gzsize: 25 MiB (27129556 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/neoverse_n1/accel/nvidia/cc90
no other files in tarball
Aug 29 12:38:40 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86331.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:36:43 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-neoverse_n1-accel-nvidia-cc90-17564710300.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: neoverse_v1
Building for: aarch64/neoverse_v1 and accelerator nvidia/cc70
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86332

date job status comment
Aug 29 11:45:15 UTC 2025 submitted job id 86332 awaits release by job manager
Aug 29 11:46:22 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 13:51:40 UTC 2025 running job 86332 is running
Aug 29 14:23:57 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86332.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-neoverse_v1-accel-nvidia-cc70-17564773730.tar.gzsize: 27 MiB (28603898 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc70/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc70/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc70/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc70
no other files in tarball
Aug 29 14:23:57 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86332.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:36:52 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-neoverse_v1-accel-nvidia-cc70-17564773730.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: neoverse_v1
Building for: aarch64/neoverse_v1 and accelerator nvidia/cc80
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86333

date job status comment
Aug 29 11:45:19 UTC 2025 submitted job id 86333 awaits release by job manager
Aug 29 11:46:19 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 12:49:25 UTC 2025 running job 86333 is running
Aug 29 13:22:07 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86333.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-neoverse_v1-accel-nvidia-cc80-17564736530.tar.gzsize: 27 MiB (28964564 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc80/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc80/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc80
no other files in tarball
Aug 29 13:22:07 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86333.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:37:03 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-neoverse_v1-accel-nvidia-cc80-17564736530.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: neoverse_v1
Building for: aarch64/neoverse_v1 and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86334

date job status comment
Aug 29 11:45:23 UTC 2025 submitted job id 86334 awaits release by job manager
Aug 29 11:46:17 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 12:02:22 UTC 2025 running job 86334 is running
Aug 29 12:35:51 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86334.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-neoverse_v1-accel-nvidia-cc90-17564708540.tar.gzsize: 27 MiB (28861791 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/neoverse_v1/accel/nvidia/cc90
no other files in tarball
Aug 29 12:35:51 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86334.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:37:12 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-neoverse_v1-accel-nvidia-cc90-17564708540.tar.gz to S3 bucket succeeded

@casparvl
Copy link
Collaborator Author

Ugent bot turns out not to be configured with this yet, so cross-compiling:

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

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Aug 29, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: amd-zen2
Building for: x86_64/amd/zen2 and accelerator nvidia/cc80
Job dir: /project/def-users/SHARED/jobs/2025.08/pr_1166/86341

date job status comment
Aug 29 11:49:05 UTC 2025 submitted job id 86341 awaits release by job manager
Aug 29 11:49:38 UTC 2025 released job awaits launch by Slurm scheduler
Aug 29 13:59:24 UTC 2025 running job 86341 is running
Aug 29 14:56:38 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-86341.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-amd-zen2-accel-nvidia-cc80-17564793530.tar.gzsize: 29 MiB (30808399 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc80/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc80/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/amd/zen2/accel/nvidia/cc80
no other files in tarball
Aug 29 14:56:38 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-86341.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:37:22 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-amd-zen2-accel-nvidia-cc80-17564793530.tar.gz to S3 bucket succeeded

@laraPPr
Copy link
Collaborator

laraPPr commented Sep 1, 2025

We should look into why these three builds are failing

The tests on nvidia grace + cc90 are also failing. Since this is a native build this should also be resolved (#1166 (comment)).

@laraPPr
Copy link
Collaborator

laraPPr commented Sep 12, 2025

Check if these two pass now NCCL is rebuild and deployed:
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=icelake for:arch=x86_64/intel/icelake,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=cascadelake for:arch=x86_64/intel/cascadelake,accel=nvidia/cc90

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Sep 12, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: intel-icelake
Building for: x86_64/intel/icelake and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.09/pr_1166/89453

date job status comment
Sep 12 06:56:02 UTC 2025 submitted job id 89453 awaits release by job manager
Sep 12 06:56:45 UTC 2025 released job awaits launch by Slurm scheduler
Sep 12 07:01:57 UTC 2025 running job 89453 is running
Sep 12 07:34:38 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-89453.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-icelake-accel-nvidia-cc90-17576624330.tar.gzsize: 27 MiB (28523611 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc90
no other files in tarball
Sep 12 07:34:38 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-89453.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Sep 12, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: intel-cascadelake
Building for: x86_64/intel/cascadelake and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.09/pr_1166/89454

date job status comment
Sep 12 06:56:07 UTC 2025 submitted job id 89454 awaits release by job manager
Sep 12 06:56:43 UTC 2025 released job awaits launch by Slurm scheduler
Sep 12 07:01:54 UTC 2025 running job 89454 is running
Sep 12 07:39:47 UTC 2025 finished
😢 FAILURE (click triangle for details)
Details
✅ job output file slurm-89454.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-cascadelake-accel-nvidia-cc90-17576627430.tar.gzsize: 0 MiB (45 bytes)
entries: 0
modules under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc90/modules/all
no module files in tarball
software under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc90/software
no software packages in tarball
reprod directories under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc90
no other files in tarball
Sep 12 07:39:47 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-89454.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case

@laraPPr
Copy link
Collaborator

laraPPr commented Sep 12, 2025

89454 failed with :

ERROR: Installation of GROMACS-2024.4-foss-2023b-CUDA-12.4.0.eb failed: "shell command 'make ...' failed in test step for GROMACS-2024.4-foss-2023b-CUDA-12.4.0.eb"

@bedroge
Copy link
Collaborator

bedroge commented Sep 12, 2025

89454 failed with :

ERROR: Installation of GROMACS-2024.4-foss-2023b-CUDA-12.4.0.eb failed: "shell command 'make ...' failed in test step for GROMACS-2024.4-foss-2023b-CUDA-12.4.0.eb"

Found this in the easybuild log:

File input/output error:
Source file: src/gromacs/utility/futil.cpp (line 454)
MPI rank:    1 (out of 2)
/tmp/bot/easybuild/build/GROMACS/2024.4/foss-2023b-CUDA-12.4.0/easybuild_obj/api/gmxapi/cpp/tests/Testing/Temporary/GmxApiTest_RunnerChainedMD.trr

For more information and tips for troubleshooting, please check the GROMACS
website at https://manual.gromacs.org/current/user-guide/run-time-errors.html
-------------------------------------------------------

File input/output error:
/tmp/bot/easybuild/build/GROMACS/2024.4/foss-2023b-CUDA-12.4.0/easybuild_obj/api/gmxapi/cpp/tests/Testing/Temporary/GmxApiTest_RunnerChainedMD.trr

For more information and tips for troubleshooting, please check the GROMACS
website at https://manual.gromacs.org/current/user-guide/run-time-errors.html
-------------------------------------------------------

That happened before, e.g. in #709 (comment), and often it works when you try again.

bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=icelake for:arch=x86_64/intel/icelake,accel=nvidia/cc90
bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=cascadelake for:arch=x86_64/intel/cascadelake,accel=nvidia/cc90

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Sep 12, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: intel-icelake
Building for: x86_64/intel/icelake and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.09/pr_1166/89487

date job status comment
Sep 12 11:31:24 UTC 2025 submitted job id 89487 awaits release by job manager
Sep 12 11:31:59 UTC 2025 released job awaits launch by Slurm scheduler
Sep 12 11:37:20 UTC 2025 running job 89487 is running
Sep 12 12:09:57 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-89487.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-icelake-accel-nvidia-cc90-17576789160.tar.gzsize: 27 MiB (28523575 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/icelake/accel/nvidia/cc90
no other files in tarball
Sep 12 12:09:57 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-89487.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:37:30 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-intel-icelake-accel-nvidia-cc90-17576789160.tar.gz to S3 bucket succeeded

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Sep 12, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: intel-cascadelake
Building for: x86_64/intel/cascadelake and accelerator nvidia/cc90
Job dir: /project/def-users/SHARED/jobs/2025.09/pr_1166/89488

date job status comment
Sep 12 11:31:28 UTC 2025 submitted job id 89488 awaits release by job manager
Sep 12 11:31:56 UTC 2025 released job awaits launch by Slurm scheduler
Sep 12 11:37:17 UTC 2025 running job 89488 is running
Sep 12 12:17:11 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-89488.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-cascadelake-accel-nvidia-cc90-17576794070.tar.gzsize: 27 MiB (28523306 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc90
no other files in tarball
Sep 12 12:17:11 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-89488.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:37:40 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-intel-cascadelake-accel-nvidia-cc90-17576794070.tar.gz to S3 bucket succeeded

@bedroge
Copy link
Collaborator

bedroge commented Sep 12, 2025

bot: build repo:eessi.io-2023.06-software instance:eessi-bot-mc-aws on:arch=cascadelake for:arch=x86_64/intel/cascadelake,accel=nvidia/cc80

@eessi-bot-aws
Copy link

eessi-bot-aws bot commented Sep 12, 2025

New job on instance eessi-bot-mc-aws for repository eessi.io-2023.06-software
Building on: intel-cascadelake
Building for: x86_64/intel/cascadelake and accelerator nvidia/cc80
Job dir: /project/def-users/SHARED/jobs/2025.09/pr_1166/89489

date job status comment
Sep 12 13:38:54 UTC 2025 submitted job id 89489 awaits release by job manager
Sep 12 13:39:22 UTC 2025 released job awaits launch by Slurm scheduler
Sep 12 13:44:25 UTC 2025 running job 89489 is running
Sep 12 14:25:44 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-89489.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.gz created!
Artefacts
eessi-2023.06-software-linux-x86_64-intel-cascadelake-accel-nvidia-cc80-17576870810.tar.gzsize: 27 MiB (28622805 bytes)
entries: 739
modules under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc80/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc80/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc80/reprod
no reprod directories in tarball
other under 2023.06/software/linux/x86_64/intel/cascadelake/accel/nvidia/cc80
no other files in tarball
Sep 12 14:25:44 UTC 2025 test result
😢 FAILURE (click triangle for details)
Reason
EESSI test suite was not run, test step itself failed to execute.
Details
✅ job output file slurm-89489.out
❌ found message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:37:48 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-x86_64-intel-cascadelake-accel-nvidia-cc80-17576870810.tar.gz to S3 bucket succeeded

@bedroge
Copy link
Collaborator

bedroge commented Sep 12, 2025

The tests on nvidia grace + cc90 are also failing. Since this is a native build this should also be resolved (#1166 (comment)).

Looks like its config file needs to be updated?

ERROR: failed to load configuration: could not find a configuration entry for the requested system/partition combination: 'BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90'

@bedroge
Copy link
Collaborator

bedroge commented Sep 12, 2025

Ah, the bot config was recently updated. Let's try again:

bot: build repo:eessi.io-2023.06-software instance:eessi-bot-jsc for:arch=aarch64/nvidia/grace,accel=nvidia/cc90

@eessi-bot-jsc
Copy link

eessi-bot-jsc bot commented Sep 12, 2025

New job on instance eessi-bot-jsc for repository eessi.io-2023.06-software
Building on: nvidia-grace and accelerator nvidia/cc90
Building for: aarch64/nvidia/grace and accelerator nvidia/cc90
Job dir: /p/project1/ceasybuilders/eessibot/jobs/2025.09/pr_1166/14055661

date job status comment
Sep 12 14:01:23 UTC 2025 submitted job id 14055661 awaits release by job manager
Sep 12 14:01:39 UTC 2025 released job awaits launch by Slurm scheduler
Sep 12 14:02:44 UTC 2025 running job 14055661 is running
Sep 12 14:44:51 UTC 2025 finished
😁 SUCCESS (click triangle for details)
Details
✅ job output file slurm-14055661.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.gz created!
Artefacts
eessi-2023.06-software-linux-aarch64-nvidia-grace-accel-nvidia-cc90-17576874310.tar.gzsize: 25 MiB (27218156 bytes)
entries: 739
modules under 2023.06/software/linux/aarch64/nvidia/grace/accel/nvidia/cc90/modules/all
GROMACS/2024.4-foss-2023b-CUDA-12.4.0.lua
software under 2023.06/software/linux/aarch64/nvidia/grace/accel/nvidia/cc90/software
GROMACS/2024.4-foss-2023b-CUDA-12.4.0
reprod directories under 2023.06/software/linux/aarch64/nvidia/grace/accel/nvidia/cc90/reprod
no reprod directories in tarball
other under 2023.06/software/linux/aarch64/nvidia/grace/accel/nvidia/cc90
no other files in tarball
Sep 12 14:44:51 UTC 2025 test result
😁 SUCCESS (click triangle for details)
ReFrame Summary
[ SKIP ] ( 1/31) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 2/31) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 3/31) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 4/31) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 5/31) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 6/31) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 7/31) Skipping GPU test : only 1 GPU available for this test case
[ SKIP ] ( 8/31) Skipping GPU test : only 1 GPU available for this test case
[ OK ] ( 9/31) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/29Aug2024-foss-2023b-kokkos %scale=1_node /aeb2d9df @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: perf: 1525.558 timesteps/s (r:0, l:None, u:None)
[ OK ] (10/31) EESSI_LAMMPS_lj %device_type=cpu %module_name=LAMMPS/2Aug2023_update2-foss-2023a-kokkos %scale=1_node /04ff9ece @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: perf: 1571.672 timesteps/s (r:0, l:None, u:None)
[ OK ] (11/31) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.2-gompi-2023b %scale=1_node %device_type=cpu /775175bf @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 4.93 us (r:0, l:None, u:None)
[ OK ] (12/31) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.1-1-gompi-2023a %scale=1_node %device_type=cpu /52707c40 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 5.0 us (r:0, l:None, u:None)
[ OK ] (13/31) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.5-gompi-2023b-CUDA-12.4.0 %scale=1_node %device_type=cpu /95ac9526 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 4.97 us (r:0, l:None, u:None)
[ OK ] (14/31) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_allreduce %module_name=OSU-Micro-Benchmarks/7.2-gompi-2023a-CUDA-12.1.1 %scale=1_node %device_type=cpu /1cff5d41 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 5.09 us (r:0, l:None, u:None)
[ OK ] (15/31) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.2-gompi-2023b %scale=1_node %device_type=cpu /b1aacda9 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 7.26 us (r:0, l:None, u:None)
[ OK ] (16/31) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.1-1-gompi-2023a %scale=1_node %device_type=cpu /c6bad193 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 7.16 us (r:0, l:None, u:None)
[ OK ] (17/31) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.5-gompi-2023b-CUDA-12.4.0 %scale=1_node %device_type=cpu /0edb8a95 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 8.59 us (r:0, l:None, u:None)
[ OK ] (18/31) EESSI_OSU_coll %benchmark_info=mpi.collective.osu_alltoall %module_name=OSU-Micro-Benchmarks/7.2-gompi-2023a-CUDA-12.1.1 %scale=1_node %device_type=cpu /b2ab2213 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 8.43 us (r:0, l:None, u:None)
[ OK ] (19/31) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.2-gompi-2023b %scale=1_node /15cad6c4 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 0.5 us (r:0, l:None, u:None)
[ OK ] (20/31) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.1-1-gompi-2023a %scale=1_node /6672deda @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 0.47 us (r:0, l:None, u:None)
[ OK ] (21/31) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.5-gompi-2023b-CUDA-12.4.0 %scale=1_node /8ec94746 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 0.49 us (r:0, l:None, u:None)
[ OK ] (22/31) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_latency %module_name=OSU-Micro-Benchmarks/7.2-gompi-2023a-CUDA-12.1.1 %scale=1_node /1a3a497b @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: latency: 0.53 us (r:0, l:None, u:None)
[ OK ] (23/31) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.2-gompi-2023b %scale=1_node /2a9a47b1 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: bandwidth: 41079.3 MB/s (r:0, l:None, u:None)
[ OK ] (24/31) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.1-1-gompi-2023a %scale=1_node /1b24ab8e @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: bandwidth: 38528.11 MB/s (r:0, l:None, u:None)
[ OK ] (25/31) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.5-gompi-2023b-CUDA-12.4.0 %scale=1_node /c9ca6dc1 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: bandwidth: 43265.79 MB/s (r:0, l:None, u:None)
[ OK ] (26/31) EESSI_OSU_pt2pt_CPU %benchmark_info=mpi.pt2pt.osu_bw %module_name=OSU-Micro-Benchmarks/7.2-gompi-2023a-CUDA-12.1.1 %scale=1_node /17289b2f @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: bandwidth: 39885.82 MB/s (r:0, l:None, u:None)
[ OK ] (27/31) EESSI_GROMACS %benchmark_info=HECBioSim/Crambin %nb_impl=gpu %scale=1_node %module_name=GROMACS/2024.4-foss-2023b-CUDA-12.4.0 /00da140b @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: perf: 1112.662 ns/day (r:0, l:None, u:None)
[ OK ] (28/31) EESSI_GROMACS %benchmark_info=HECBioSim/Crambin %nb_impl=cpu %scale=1_node %module_name=GROMACS/2024.4-foss-2023b /b2b72766 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: perf: 77.473 ns/day (r:0, l:None, u:None)
[ OK ] (29/31) EESSI_GROMACS %benchmark_info=HECBioSim/Crambin %nb_impl=cpu %scale=1_node %module_name=GROMACS/2024.3-foss-2023b /d2fe4ce3 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: perf: 77.935 ns/day (r:0, l:None, u:None)
[ OK ] (30/31) EESSI_GROMACS %benchmark_info=HECBioSim/Crambin %nb_impl=cpu %scale=1_node %module_name=GROMACS/2024.1-foss-2023b /02920241 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: perf: 77.983 ns/day (r:0, l:None, u:None)
[ OK ] (31/31) EESSI_GROMACS %benchmark_info=HECBioSim/Crambin %nb_impl=cpu %scale=1_node %module_name=GROMACS/2024.4-foss-2023b-CUDA-12.4.0 /af58ebf1 @BotBuildTests:aarch64_nvidia_grace_accel_nvidia_cc90+default
P: perf: 93.156 ns/day (r:0, l:None, u:None)
[ PASSED ] Ran 23/31 test case(s) from 31 check(s) (0 failure(s), 8 skipped, 0 aborted)
Details
✅ job output file slurm-14055661.out
✅ no message matching ERROR:
✅ no message matching [\s*FAILED\s*].*Ran .* test case
Sep 18 13:33:20 UTC 2025 uploaded transfer of eessi-2023.06-software-linux-aarch64-nvidia-grace-accel-nvidia-cc90-17576874310.tar.gz to S3 bucket succeeded

@ocaisa ocaisa added the bot:deploy Ask bot to deploy missing software installations to EESSI label Sep 18, 2025
@ocaisa ocaisa merged commit d05ded9 into EESSI:main Sep 18, 2025
50 checks passed
@casparvl casparvl deleted the rebuild_gromacs branch October 25, 2025 20:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bot:deploy Ask bot to deploy missing software installations to EESSI

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants