Index: ../trunk-jpl/src/m/classes/clusters/maui.m =================================================================== --- ../trunk-jpl/src/m/classes/clusters/maui.m (revision 25386) +++ ../trunk-jpl/src/m/classes/clusters/maui.m (revision 25387) @@ -8,18 +8,18 @@ classdef maui properties (SetAccess=public) % {{{ - name = 'maui' - login = ''; - numnodes = 20; - cpuspernode = 8; - port = 8000; + name = 'maui' + login = ''; + numnodes = 1; + cpuspernode = 8; + port = 0; projectaccount = ''; - partition = ''; - codepath = ''; - executionpath = ''; - interactive = 0; - time = 24*60; - memory = 2; + partition = ''; + codepath = ''; + executionpath = ''; + interactive = 0; + time = 24*60; + memory = 2; end %}}} methods @@ -57,7 +57,7 @@ %}}} function md = checkconsistency(cluster,md,solution,analyses) % {{{ - available_queues={'large','long','prepost','bigmem','hugemem','gpu'}; + available_partitions={'large','long','prepost','bigmem','hugemem','gpu'}; partition_requirements_time=[3*24*60 3*7*24*60 3*60 3*24*60 3*24*60 3*24*60]; partition_requirements_np=[1024 720 4 72 64 4]; @@ -85,7 +85,7 @@ fprintf(fid,'#SBATCH --account=%s \n',cluster.projectaccount); fprintf(fid,'#SBATCH --partition=%s \n',cluster.partition); fprintf(fid,'#SBATCH --ntasks=%i \n',cluster.numnodes); - fprintf(fid,'#SBATCH --cpus-per-task= %i\n',cluster.cpuspernode); + fprintf(fid,'#SBATCH --cpus-per-task=%i\n',cluster.cpuspernode); fprintf(fid,'#SBATCH --time=%i\n',cluster.time*60); %walltime is in seconds. fprintf(fid,'#SBATCH --mem-per-cpu=%igb\n',cluster.memory); fprintf(fid,'#SBATCH -o %s.outlog \n',modelname);