diff --git a/samples/genbenchmarkscripts/main.c b/samples/genbenchmarkscripts/main.c index f9d5506..8d35ae9 100644 --- a/samples/genbenchmarkscripts/main.c +++ b/samples/genbenchmarkscripts/main.c @@ -19,8 +19,8 @@ main(void) fprintf(fp, "#BATCH --job-name=astaroth\n"); fprintf(fp, "#SBATCH --account=project_2000403\n"); fprintf(fp, "#SBATCH --time=00:14:59\n"); - fprintf(fp, "#SBATCH --mem=24000\n"); - fprintf(fp, "#SBATCH --partition=gputest\n"); + fprintf(fp, "#SBATCH --mem=32000\n"); + fprintf(fp, "#SBATCH --partition=gpu\n"); // nprocs, nodes, gpus const int max_gpus_per_node = 4; diff --git a/samples/mpitest/main.cc b/samples/mpitest/main.cc index 7315df2..8d0a4fc 100644 --- a/samples/mpitest/main.cc +++ b/samples/mpitest/main.cc @@ -74,7 +74,8 @@ main(void) int main(void) { - printf("The library was built without MPI support, cannot run mpitest. Rebuild Astaroth with cmake -DMPI_ENABLED=ON .. to enable.\n"); + printf("The library was built without MPI support, cannot run mpitest. Rebuild Astaroth with " + "cmake -DMPI_ENABLED=ON .. to enable.\n"); return EXIT_FAILURE; } #endif // AC_MPI_ENABLES