Dear all,
I've set up my job.sh like this:
#!/bin/bash -l##SBATCH --nodes=1#SBATCH --time=00:08:00#SBATCH --job-name=INTEGRATE#SBATCH --export=NONE#SBATCH --constraint=hwperf#SBATCH --cpu-freq=2400000-2400000:performanceunset SLURM_EXPORT_ENVmodule load intel# Check actual CPU frequency at job runtimeecho "=== CPU FREQ CHECK ==="cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq 2>/dev/null || echo "scaling_cur_freq not readable"cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor 2>/dev/null || echo "scaling_governor not readable"./piUnfortunately, neither
--cpu-freq=2400000-2400000:performance nor --constraint=hwperf seem to be capable to set the clock to 2.4GHz as the output of my CPU freq check is confirming:=== CPU FREQ CHECK === 857686 powersaveWhat is the issue here?
EDIT: This is my job output:
### Starting TaskPrologue of job 3483927 on f0312 at Mon Apr 27 16:26:41 CEST 2026# SLURM_JOB_NODELIST=f0312# SLURM_JOB_NUM_NODES=1# SLURM_NTASKS=# SLURM_NPROCS=# SLURM_TASKS_PER_NODE=72# SLURM_JOB_CPUS_PER_NODE=72# SLURM_EXPORT_ENV=NONERunning on cores 0-71 with governor powersave### Finished TaskPrologue=== CPU FREQ CHECK ===800749powersavepi = 3.1524114333 with N = 10Time: 0.000000 s