diff --git a/lib/refrepo/gen/oar-properties.rb b/lib/refrepo/gen/oar-properties.rb
index 6e22a35431125ce6902d9eb5ebecdef622b97500..1cbd0dc02ca7ce4983b1b8f80176a9fab2351c4b 100644
--- a/lib/refrepo/gen/oar-properties.rb
+++ b/lib/refrepo/gen/oar-properties.rb
@@ -20,29 +20,24 @@ module OarProperties
 # OAR API data cache
 @@oar_data = {}
 
-def export_rows_as_formated_line(generated_hierarchy)
-  # Display header
-  puts "+#{'-' * 10} + #{'-' * 20} + #{'-' * 5} + #{'-' * 5} + #{'-' * 8} + #{'-' * 4} + #{'-' * 20} + #{'-' * 30} + #{'-' * 30}+"
-  puts "|#{'cluster'.rjust(10)} | #{'host'.ljust(20)} | #{'cpu'.ljust(5)} | #{'core'.ljust(5)} | #{'cpuset'.ljust(8)} | #{'gpu'.ljust(4)} | #{'gpudevice'.ljust(20)} | #{'cpumodel'.ljust(30)} | #{'gpumodel'.ljust(30)}|"
-  puts "+#{'-' * 10} + #{'-' * 20} + #{'-' * 5} + #{'-' * 5} + #{'-' * 8} + #{'-' * 4} + #{'-' * 20} + #{'-' * 30} + #{'-' * 30}+"
-
-  oar_rows = generated_hierarchy[:nodes].map{|node| node[:oar_rows]}.flatten
-
-  # Display rows
-  oar_rows.each do |row|
-    cluster = row[:cluster].to_s
-    host = row[:host].to_s
-    cpu = row[:cpu].to_s
-    core = row[:core].to_s
-    cpuset = row[:cpuset].to_s
-    gpu = row[:gpu].to_s
-    gpudevice = row[:gpudevice].to_s
-    cpumodel = row[:cpumodel].to_s
-    gpumodel = row[:gpumodel].to_s
-    puts "|#{cluster.rjust(10)} | #{host.ljust(20)} | #{cpu.ljust(5)} | #{core.ljust(5)} | #{cpuset.ljust(8)} | #{gpu.ljust(4)} | #{gpudevice.ljust(20)} | #{cpumodel.ljust(30)} | #{gpumodel.ljust(30)}|"
+def table_separator(cols)
+  return "+-#{cols.map{|_k, v| '-' * v }.join('-+-')}-+"
+end 
+def display_resources_table(generated_hierarchy)
+  cols = {cluster: 11, host: 20, cpu: 5, core: 5, cpuset: 6, cpumodel: 25, gpu: 4, gpudevice: 10, gpumodel: 30}
+  puts table_separator(cols)
+  puts "| #{cols.map{|k, v| k.to_s.ljust(v) }.join(' | ')} |"
+  
+  host_prev = ""
+  generated_hierarchy[:nodes].map{|node| node[:oar_rows]}.flatten.each do |row|
+    if row[:host] != host_prev
+      puts table_separator(cols)
+      host_prev = row[:host]
+    end
+    puts "| #{cols.map{|k, v| row[k].to_s.ljust(v)}.join(' | ')} |"
+    
   end
-  # Display footer
-  puts "+#{'-' * 10} + #{'-' * 20} + #{'-' * 5} + #{'-' * 5} + #{'-' * 8} + #{'-' * 4} + #{'-' * 20} + #{'-' * 30} + #{'-' * 30}+"
+  puts table_separator(cols)
 end
 
 ############################################
@@ -425,6 +420,7 @@ def get_ref_node_properties_internal(cluster_uid, cluster, node_uid, node)
 
   h['gpu_model'] = ''
   h['gpu_count'] = 0
+  h['gpu_mem'] = 0
 
   if node.key?('gpu_devices')
     models = node['gpu_devices'].map { |_, g| g['model'] }.uniq
@@ -435,6 +431,7 @@ def get_ref_node_properties_internal(cluster_uid, cluster, node_uid, node)
     if GPURef.is_gpu_supported?(device)
       h['gpu_model'] = device['model']
       h['gpu_count'] = node['gpu_devices'].length
+      h['gpu_mem'] = device['memory'] / MiB
     end
   end
 
@@ -1004,30 +1001,14 @@ end
 
 def sanity_check(cluster_resources, site_resources)
 
-  sanity_result = true
-
   # Detect cluster resources
-  cluster_cpus =
-    cluster_resources
-      .map{|r| r["cpu"]}
-      .uniq
-  cluster_gpus =
-    cluster_resources
-      .map{|r| r["gpu"]}
-      .select{|gpu| not gpu.nil?}
-      .uniq
-  cluster_cores =
-    cluster_resources
-      .map{|r| r["core"]}
-      .uniq
+  cluster_cpus = cluster_resources.map{|r| r["cpu"]}.uniq
+  cluster_gpus = cluster_resources.map{|r| r["gpu"]}.select{|gpu| not gpu.nil?}.uniq
+  cluster_cores = cluster_resources.map{|r| r["core"]}.uniq
 
   # Check CPUs
   cluster_cpus.each do |cluster_cpu|
-    hosts_with_same_cpu =
-      site_resources
-        .select{|r| r["cpu"] == cluster_cpu}
-        .map{|r| r["host"]}
-        .uniq
+    hosts_with_same_cpu = site_resources.select{|r| r["cpu"] == cluster_cpu}.map{|r| r["host"]}.uniq
 
     if hosts_with_same_cpu.length > 1
       puts("################################")
@@ -1037,17 +1018,13 @@ def sanity_check(cluster_resources, site_resources)
       puts("oarnodes -Y --sql \"cpu=#{cluster_cpu}\"")
       puts("")
 
-      sanity_result = false
+      return false
     end
   end
 
   # Checks GPUs
   cluster_gpus.each do |cluster_gpu|
-    hosts_with_same_gpu =
-      site_resources
-        .select{|r| r["gpu"] == cluster_gpu}
-        .map{|r| r["host"]}
-        .uniq
+    hosts_with_same_gpu = site_resources.select{|r| r["gpu"] == cluster_gpu}.map{|r| r["host"]}.uniq
 
     if hosts_with_same_gpu.length > 1
       puts("################################")
@@ -1057,19 +1034,16 @@ def sanity_check(cluster_resources, site_resources)
       puts("oarnodes -Y --sql \"gpu=#{cluster_gpu}\"")
       puts("")
 
-      sanity_result = false
+      return false
     end
   end
 
   # Check Cores
   cluster_cores.each do |cluster_core|
-    resources_id_with_same_core =
-      site_resources
-        .select{|r| r["core"] == cluster_core}
-        .map{|r| r["id"]}
+    resources_id_with_same_core = site_resources.select{|r| r["core"] == cluster_core}.map{|r| r["id"]}
 
     if resources_id_with_same_core.length > 1
-      oar_sql_clause = resources_id_with_same_core .map{|rid| "resource_id='#{rid}'"}.join(" OR ")
+      oar_sql_clause = resources_id_with_same_core.map{|rid| "resource_id='#{rid}'"}.join(" OR ")
 
       puts("################################")
       puts("# Error: resources with ids #{resources_id_with_same_core} have the same value for core (core is equal to #{cluster_core})\n")
@@ -1078,11 +1052,11 @@ def sanity_check(cluster_resources, site_resources)
       puts("oarnodes -Y --sql \"#{oar_sql_clause}\"")
       puts("")
 
-      sanity_result = false
+      return false
     end
   end
 
-  return sanity_result
+  return true
 end
 
 
@@ -1143,8 +1117,7 @@ def extract_clusters_description(clusters, site_name, options, data_hierarchy, s
       raise 'Sanity check failed'
     end
 
-    cluster_desc_from_data_files = data_hierarchy['sites'][site_name]['clusters'][cluster_name]
-    cluster_nodes = cluster_desc_from_data_files['nodes']
+    cluster_nodes = data_hierarchy['sites'][site_name]['clusters'][cluster_name]['nodes']
 
     node_count = cluster_nodes.length
 
@@ -1159,13 +1132,13 @@ def extract_clusters_description(clusters, site_name, options, data_hierarchy, s
       raise 'Sanity check failed'
     end
 
-    first_node = cluster_desc_from_data_files['nodes'].first[1]
+    first_node = cluster_nodes.first[1]
 
     cpu_count = first_node['architecture']['nb_procs']
     cpu_core_count = first_node['architecture']['nb_cores'] / cpu_count
     cpu_thread_count = first_node['architecture']['nb_threads'] / cpu_count
     core_thread_count = first_node['architecture']['nb_threads'] / first_node['architecture']['nb_cores']
-    gpu_count = cluster_desc_from_data_files['nodes'].values.map { |e| (e['gpu_devices'] || {} ).length }.max
+    gpu_count = cluster_nodes.values.map { |e| (e['gpu_devices'] || {} ).length }.max
 
     cpu_model = "#{first_node['processor']['model']} #{first_node['processor']['version']}"
     core_numbering = first_node['architecture']['cpu_core_numbering']
@@ -1191,7 +1164,7 @@ def extract_clusters_description(clusters, site_name, options, data_hierarchy, s
         "gpu" => {
           :current_ids => [],
           :per_server_count => gpu_count,
-          :per_cluster_count =>  cluster_desc_from_data_files['nodes'].values.map { |e| (e['gpu_devices'] || {} ).length }.inject(0) { |a, b| a+b } # sum
+          :per_cluster_count => cluster_nodes.values.map { |e| (e['gpu_devices'] || {} ).length }.inject(0) { |a, b| a+b } # sum
         },
     }
 
@@ -1241,7 +1214,7 @@ def extract_clusters_description(clusters, site_name, options, data_hierarchy, s
       name = nodes_names[node_index0][:name]
       fqdn = nodes_names[node_index0][:fqdn]
 
-      node_description = cluster_desc_from_data_files["nodes"][name]
+      node_description = cluster_nodes[name]
 
       node_description_default_properties = site_properties["default"][name]
 
@@ -1443,7 +1416,7 @@ def generate_oar_properties(options)
 
   # DO=table
   if options.key? :table and options[:table]
-    export_rows_as_formated_line(generated_hierarchy)
+    display_resources_table(generated_hierarchy)
   end
 
   # Do=Diff
diff --git a/lib/refrepo/gen/puppet/oarsub-simplifier-aliases.rb b/lib/refrepo/gen/puppet/oarsub-simplifier-aliases.rb
index 1ad577e8df318617c6059fb510c0357f81803af7..7b374557f74fb17f468ec0810e94c8a19fb71935 100644
--- a/lib/refrepo/gen/puppet/oarsub-simplifier-aliases.rb
+++ b/lib/refrepo/gen/puppet/oarsub-simplifier-aliases.rb
@@ -17,8 +17,12 @@ def get_sub_simplifier_default_aliases(options)
           'desc' => "Select node(s) with #{model} GPU",
           'category' => 'GPUs'}]
   end.to_h
-
   default_aliases.merge!(gpu_aliases)
+
+  gpu_mem_aliases = [6, 12, 16, 24, 32, 40, 60].map{|m| ["gpu-#{m}GB", {'value' => "gpu_mem>=#{m*1000}", 'category': 'GPUS',
+    'desc' => "Select node(s) with GPU having more than #{m}GB of memory"}]}.to_h
+  default_aliases.merge!(gpu_mem_aliases)
+
   mem_aliases = {}
   mem_multipliers = [24, 32]
   mem_multipliers.each do |i|
diff --git a/spec/oar_properties_arguments_spec.rb b/spec/oar_properties_arguments_spec.rb
index 00265f341d7db22eacbd2f7193f8aaa618e594db..7a8289ad03be1bd340417c3faad5318e1f3e015a 100644
--- a/spec/oar_properties_arguments_spec.rb
+++ b/spec/oar_properties_arguments_spec.rb
@@ -10,7 +10,7 @@ describe 'OarProperties' do
       prepare_stubs("dump_oar_api_empty_server.json", "load_data_hierarchy_stubbed_data.json")
     end
 
-    it 'should should accept case where only the site is specified' do
+    it 'should accept case where only the site is specified' do
 
       uri = URI(conf["uri"])
 
@@ -27,9 +27,9 @@ describe 'OarProperties' do
       }
 
       expected_header = <<-TXT
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
 TXT
 
       generator_output = capture do
diff --git a/spec/output/bad_best_effort_property_diff_stdout.txt b/spec/output/bad_best_effort_property_diff_stdout.txt
index 5a71e6762f8c4233b036f2b1e6edecacb13bc916..975131d44b9508a3e7903a9c657de5014ba497c0 100644
--- a/spec/output/bad_best_effort_property_diff_stdout.txt
+++ b/spec/output/bad_best_effort_property_diff_stdout.txt
@@ -4,6 +4,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2:
     ["~", "besteffort", "YES", "NO"]
@@ -11,5 +12,6 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
diff --git a/spec/output/bad_best_effort_property_print_stdout.txt b/spec/output/bad_best_effort_property_print_stdout.txt
index efe6ae37710f994073b53a2cbfb63fb961e634e2..af0533434cbda2f7a7a0e342a5acdd861aa7f566 100644
--- a/spec/output/bad_best_effort_property_print_stdout.txt
+++ b/spec/output/bad_best_effort_property_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='NO' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='NO' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/bad_best_effort_property_table_stdout.txt b/spec/output/bad_best_effort_property_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/bad_best_effort_property_table_stdout.txt
+++ b/spec/output/bad_best_effort_property_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/chassis_unset_diff_stdout.txt b/spec/output/chassis_unset_diff_stdout.txt
index 8aee2cacfe53d3cf8db80cc5f4285f976176713e..e70b52837eb738db43353be66b7c378dbe38179b 100644
--- a/spec/output/chassis_unset_diff_stdout.txt
+++ b/spec/output/chassis_unset_diff_stdout.txt
@@ -5,6 +5,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2:
     ["~", "chassis", nil, "Dell Inc. PowerEdge T640 9L1CBX2"]
@@ -12,5 +13,6 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, chassis, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, chassis, eth_kavlan_count, gpu_mem
diff --git a/spec/output/chassis_unset_print_stdout.txt b/spec/output/chassis_unset_print_stdout.txt
index db086ef26b15de5a2209c2e415e3873c4e806777..0a031fa1cf7d53b0fa5bf6a5bbb71a60f2504a70 100644
--- a/spec/output/chassis_unset_print_stdout.txt
+++ b/spec/output/chassis_unset_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/chassis_unset_table_stdout.txt b/spec/output/chassis_unset_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/chassis_unset_table_stdout.txt
+++ b/spec/output/chassis_unset_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/configured_misconfigured_cores_diff_stdout.txt b/spec/output/configured_misconfigured_cores_diff_stdout.txt
index 87dceb7c4d0c4841ae6293072551356c4783b833..9241be7050463cb5e3340888c05bf83bea42330a 100644
--- a/spec/output/configured_misconfigured_cores_diff_stdout.txt
+++ b/spec/output/configured_misconfigured_cores_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: switch, cpu_count, core_count, thread_count, chassis, eth_kavlan_count, gpu_model, exotic
+Properties that need to be created on the fakesite server: switch, cpu_count, core_count, thread_count, chassis, eth_kavlan_count, gpu_model, gpu_mem, exotic
diff --git a/spec/output/configured_misconfigured_cores_print_stdout.txt b/spec/output/configured_misconfigured_cores_print_stdout.txt
index 383e6d76d707d4732ad08e85ab2c71993115348e..3fb67ce9c770b427d201f5773d9fb2ed18ebcac8 100644
--- a/spec/output/configured_misconfigured_cores_print_stdout.txt
+++ b/spec/output/configured_misconfigured_cores_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -112,7 +113,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=6 -p core=47 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=6 -p core=48 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -137,6 +138,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=63 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=64 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/configured_misconfigured_cores_table_stdout.txt b/spec/output/configured_misconfigured_cores_table_stdout.txt
index 1090ebff98aa050980ed0be19f5d2f9e284dbbc7..135da745ca8e5c5487748720f66016d22b67f24c 100644
--- a/spec/output/configured_misconfigured_cores_table_stdout.txt
+++ b/spec/output/configured_misconfigured_cores_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 5     | 33    | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 34    | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 35    | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 36    | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 37    | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 38    | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 39    | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 40    | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 41    | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 42    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 43    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 44    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 45    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 46    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 47    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 48    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 49    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 50    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 51    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 52    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 53    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 54    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 55    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 56    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 57    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 58    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 59    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 60    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 61    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 62    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 63    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 64    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 5     | 33    | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 34    | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 35    | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 36    | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 37    | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 38    | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 39    | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 40    | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 41    | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 42    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 43    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 44    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 45    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 46    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 47    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 48    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 7     | 49    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 50    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 51    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 52    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 53    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 54    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 55    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 56    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 57    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 58    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 59    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 60    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 61    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 62    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 63    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 64    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/configured_misconfigured_gpu_diff_stdout.txt b/spec/output/configured_misconfigured_gpu_diff_stdout.txt
index ee1ca8ab22be71c5d9e23774c7683e8214347609..407a4ac2a6c8d2b181dc7e1191d405148fa08a04 100644
--- a/spec/output/configured_misconfigured_gpu_diff_stdout.txt
+++ b/spec/output/configured_misconfigured_gpu_diff_stdout.txt
@@ -7,6 +7,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
     ["+", "exotic", "NO"]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2:
     ["~", "deploy", "NO", "YES"]
@@ -16,6 +17,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
     ["+", "exotic", "NO"]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, chassis, eth_kavlan_count, exotic
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, chassis, eth_kavlan_count, gpu_mem, exotic
 # Error: Resource 9 (host=clustera-1.fakesite.grid5000.fr cpu=2 core=9 cpuset=8 gpu=2 gpudevice=2) has a mismatch for ressource GPU: OAR API gives 2, generator wants 3.
diff --git a/spec/output/configured_misconfigured_gpu_print_stdout.txt b/spec/output/configured_misconfigured_gpu_print_stdout.txt
index 7796fdcad920d753fd2506fddae160315fe8dc33..5f2fb7d808ca4cf31af79d87b2132f4b86dce347 100644
--- a/spec/output/configured_misconfigured_gpu_print_stdout.txt
+++ b/spec/output/configured_misconfigured_gpu_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -112,7 +113,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -137,6 +138,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/configured_misconfigured_gpu_table_stdout.txt b/spec/output/configured_misconfigured_gpu_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/configured_misconfigured_gpu_table_stdout.txt
+++ b/spec/output/configured_misconfigured_gpu_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/configured_missing_network_interfaces_diff_stdout.txt b/spec/output/configured_missing_network_interfaces_diff_stdout.txt
index f252cbb2250454ae20512bb33f36f820732f9dba..b804ab7901f1e875452b4d5e7164d685d405b052 100644
--- a/spec/output/configured_missing_network_interfaces_diff_stdout.txt
+++ b/spec/output/configured_missing_network_interfaces_diff_stdout.txt
@@ -6,5 +6,6 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
diff --git a/spec/output/configured_missing_network_interfaces_print_stdout.txt b/spec/output/configured_missing_network_interfaces_print_stdout.txt
index 283ee9a7342a019dcf8d65ce63b89544e901f4db..8cfbd52b85b9c74f573e3e22e7b5d0e4d271071b 100644
--- a/spec/output/configured_missing_network_interfaces_print_stdout.txt
+++ b/spec/output/configured_missing_network_interfaces_print_stdout.txt
@@ -82,6 +82,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -136,6 +137,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/configured_missing_network_interfaces_table_stdout.txt b/spec/output/configured_missing_network_interfaces_table_stdout.txt
index 563f35f8b07aa004fbe58b7434364a611fab392b..380f5cab7b56faa946bc7b7ebfeefac2a7e20188 100644
--- a/spec/output/configured_missing_network_interfaces_table_stdout.txt
+++ b/spec/output/configured_missing_network_interfaces_table_stdout.txt
@@ -1,37 +1,38 @@
 Error (missing property) while processing node clustera-1: Node clustera-1 does not have a main network_adapter (ie. an ethernet interface with enabled=true && mounted==true && management==false)
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/configured_with_disk_diff_stdout.txt b/spec/output/configured_with_disk_diff_stdout.txt
index 437cd45ebac2bb75d0e2b63a7ad8844f210d1896..ad2eea19350bb6c9be1f5b54d611a5a41fb43231 100644
--- a/spec/output/configured_with_disk_diff_stdout.txt
+++ b/spec/output/configured_with_disk_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: switch, cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: switch, cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
diff --git a/spec/output/configured_with_disk_print_stdout.txt b/spec/output/configured_with_disk_print_stdout.txt
index 1592cb5b00da1db82544352cecf1bca06fdc850c..dc9cd350a61dd03ccafcf94c8955307a42d9f9da 100644
--- a/spec/output/configured_with_disk_print_stdout.txt
+++ b/spec/output/configured_with_disk_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -112,7 +113,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=6 -p core=47 -p cpuset=14 -p gpu=12 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=6 -p core=48 -p cpuset=15 -p gpu=12 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -137,6 +138,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=63 -p cpuset=14 -p gpu=16 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=64 -p cpuset=15 -p gpu=16 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/configured_with_disk_table_stdout.txt b/spec/output/configured_with_disk_table_stdout.txt
index 61ea618d71d84d14ff12cc4b0fa827f8828dfdd3..f2df596c2a3aaf9497110a8e048a812ca8b7fb09 100644
--- a/spec/output/configured_with_disk_table_stdout.txt
+++ b/spec/output/configured_with_disk_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 5     | 33    | 0        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 34    | 1        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 35    | 2        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 36    | 3        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 37    | 4        | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 38    | 5        | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 39    | 6        | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 40    | 7        | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 41    | 8        | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 42    | 9        | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 43    | 10       | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 44    | 11       | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 45    | 12       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 46    | 13       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 47    | 14       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 48    | 15       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 49    | 0        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 50    | 1        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 51    | 2        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 52    | 3        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 53    | 4        | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 54    | 5        | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 55    | 6        | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 56    | 7        | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 57    | 8        | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 58    | 9        | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 59    | 10       | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 60    | 11       | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 61    | 12       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 62    | 13       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 63    | 14       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 64    | 15       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 5     | 33    | 0      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 34    | 1      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 35    | 2      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 36    | 3      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 37    | 4      | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 38    | 5      | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 39    | 6      | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 40    | 7      | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 41    | 8      | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 42    | 9      | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 43    | 10     | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 44    | 11     | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 45    | 12     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 46    | 13     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 47    | 14     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 48    | 15     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 7     | 49    | 0      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 50    | 1      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 51    | 2      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 52    | 3      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 53    | 4      | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 54    | 5      | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 55    | 6      | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 56    | 7      | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 57    | 8      | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 58    | 9      | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 59    | 10     | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 60    | 11     | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 61    | 12     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 62    | 13     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 63    | 14     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 64    | 15     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/configured_without_gpu_diff_stdout.txt b/spec/output/configured_without_gpu_diff_stdout.txt
index 8f7fc2719198ccf8c33cd4bd7a1e0a1a538953fc..495ed157c918a6f6cc90883fa3a66fda31d1c9e9 100644
--- a/spec/output/configured_without_gpu_diff_stdout.txt
+++ b/spec/output/configured_without_gpu_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: switch, cpu_count, core_count, thread_count, eth_kavlan_count, gpu_model
+Properties that need to be created on the fakesite server: switch, cpu_count, core_count, thread_count, eth_kavlan_count, gpu_model, gpu_mem
diff --git a/spec/output/configured_without_gpu_print_stdout.txt b/spec/output/configured_without_gpu_print_stdout.txt
index 383e6d76d707d4732ad08e85ab2c71993115348e..3fb67ce9c770b427d201f5773d9fb2ed18ebcac8 100644
--- a/spec/output/configured_without_gpu_print_stdout.txt
+++ b/spec/output/configured_without_gpu_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -112,7 +113,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=6 -p core=47 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=6 -p core=48 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -137,6 +138,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=63 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=64 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/configured_without_gpu_table_stdout.txt b/spec/output/configured_without_gpu_table_stdout.txt
index 1090ebff98aa050980ed0be19f5d2f9e284dbbc7..135da745ca8e5c5487748720f66016d22b67f24c 100644
--- a/spec/output/configured_without_gpu_table_stdout.txt
+++ b/spec/output/configured_without_gpu_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 5     | 33    | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 34    | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 35    | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 36    | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 37    | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 38    | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 39    | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 40    | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 41    | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 42    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 43    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 44    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 45    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 46    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 47    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 48    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 49    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 50    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 51    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 52    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 53    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 54    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 55    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 56    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 57    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 58    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 59    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 60    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 61    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 62    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 63    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 64    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 5     | 33    | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 34    | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 35    | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 36    | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 37    | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 38    | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 39    | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 40    | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 41    | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 42    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 43    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 44    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 45    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 46    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 47    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 48    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 7     | 49    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 50    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 51    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 52    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 53    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 54    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 55    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 56    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 57    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 58    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 59    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 60    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 61    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 62    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 63    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 64    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/dahu_empty_diff_stdout.txt b/spec/output/dahu_empty_diff_stdout.txt
index 9f744facc580cc2bae9f98dee244d102b025b7dd..04f7e38c8a78aeea4e366580ab378d6b8be68d8b 100644
--- a/spec/output/dahu_empty_diff_stdout.txt
+++ b/spec/output/dahu_empty_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -100,6 +102,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -141,6 +144,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -182,6 +186,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -223,6 +228,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -264,6 +270,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -305,6 +312,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -327,4 +335,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 64]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/dahu_empty_print_stdout.txt b/spec/output/dahu_empty_print_stdout.txt
index 827e880f3a2457953469068ab61903f1f7e7a757..98a4acb7373dacc70e7ed86d1937e732614a8134 100644
--- a/spec/output/dahu_empty_print_stdout.txt
+++ b/spec/output/dahu_empty_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -126,7 +127,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=31 -p cpuset=29
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=32 -p cpuset=31
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 17TRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 17TRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -167,7 +168,7 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=63 -p cpuset=29
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=64 -p cpuset=31
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 17VJSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 17VJSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -208,7 +209,7 @@ oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=95 -p cpuset=29
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=96 -p cpuset=31
 echo; echo 'Setting properties for clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 17VKSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 17VKSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -249,7 +250,7 @@ oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=127 -p cpuset=29
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=128 -p cpuset=31
 echo; echo 'Setting properties for clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 17VLSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 17VLSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -290,7 +291,7 @@ oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='clustera-5.fakesite.grid5000.fr' -p cpu=10 -p core=159 -p cpuset=29
 oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='clustera-5.fakesite.grid5000.fr' -p cpu=10 -p core=160 -p cpuset=31
 echo; echo 'Setting properties for clustera-5.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 16XKSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 16XKSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -331,7 +332,7 @@ oarnodesetting -a -h 'clustera-6.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-6.fakesite.grid5000.fr' -s Absent -p host='clustera-6.fakesite.grid5000.fr' -p cpu=12 -p core=191 -p cpuset=29
 oarnodesetting -a -h 'clustera-6.fakesite.grid5000.fr' -s Absent -p host='clustera-6.fakesite.grid5000.fr' -p cpu=12 -p core=192 -p cpuset=31
 echo; echo 'Setting properties for clustera-6.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 16WMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 16WMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -372,7 +373,7 @@ oarnodesetting -a -h 'clustera-7.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-7.fakesite.grid5000.fr' -s Absent -p host='clustera-7.fakesite.grid5000.fr' -p cpu=14 -p core=223 -p cpuset=29
 oarnodesetting -a -h 'clustera-7.fakesite.grid5000.fr' -s Absent -p host='clustera-7.fakesite.grid5000.fr' -p cpu=14 -p core=224 -p cpuset=31
 echo; echo 'Setting properties for clustera-7.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 16YLSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 16YLSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -413,6 +414,6 @@ oarnodesetting -a -h 'clustera-8.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-8.fakesite.grid5000.fr' -s Absent -p host='clustera-8.fakesite.grid5000.fr' -p cpu=16 -p core=255 -p cpuset=29
 oarnodesetting -a -h 'clustera-8.fakesite.grid5000.fr' -s Absent -p host='clustera-8.fakesite.grid5000.fr' -p cpu=16 -p core=256 -p cpuset=31
 echo; echo 'Setting properties for clustera-8.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 16XQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='default'" -p ip='172.16.20.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge C6420' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge C6420 16XQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6144 -p memcpu=98304 -p memnode=196608 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201800 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/dahu_empty_table_stdout.txt b/spec/output/dahu_empty_table_stdout.txt
index c482f84977e7f83ee5561eac8cc589b7e4e0a7e3..105397fef288164d6335d5ae235e333ccd9a20f6 100644
--- a/spec/output/dahu_empty_table_stdout.txt
+++ b/spec/output/dahu_empty_table_stdout.txt
@@ -1,260 +1,267 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 2     | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 3     | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 4     | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 5     | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 6     | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 7     | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 8     | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 9     | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 10    | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 11    | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 12    | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 13    | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 14    | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 15    | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 16    | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 17    | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 18    | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 19    | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 20    | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 21    | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 22    | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 23    | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 24    | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 25    | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 26    | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 27    | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 28    | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 29    | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 30    | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 31    | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 32    | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 33    | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 34    | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 35    | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 36    | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 37    | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 38    | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 39    | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 40    | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 41    | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 42    | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 43    | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 44    | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 45    | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 46    | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 47    | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 3     | 48    | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 49    | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 50    | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 51    | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 52    | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 53    | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 54    | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 55    | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 56    | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 57    | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 58    | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 59    | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 60    | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 61    | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 62    | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 63    | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 4     | 64    | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 65    | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 66    | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 67    | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 68    | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 69    | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 70    | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 71    | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 72    | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 73    | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 74    | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 75    | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 76    | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 77    | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 78    | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 79    | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 5     | 80    | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 81    | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 82    | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 83    | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 84    | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 85    | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 86    | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 87    | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 88    | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 89    | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 90    | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 91    | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 92    | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 93    | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 94    | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 95    | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 6     | 96    | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 97    | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 98    | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 99    | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 100   | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 101   | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 102   | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 103   | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 104   | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 105   | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 106   | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 107   | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 108   | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 109   | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 110   | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 111   | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 7     | 112   | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 113   | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 114   | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 115   | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 116   | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 117   | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 118   | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 119   | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 120   | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 121   | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 122   | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 123   | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 124   | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 125   | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 126   | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 127   | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 8     | 128   | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 129   | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 130   | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 131   | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 132   | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 133   | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 134   | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 135   | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 136   | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 137   | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 138   | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 139   | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 140   | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 141   | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 142   | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 143   | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 9     | 144   | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 145   | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 146   | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 147   | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 148   | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 149   | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 150   | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 151   | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 152   | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 153   | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 154   | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 155   | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 156   | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 157   | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 158   | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 159   | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-5           | 10    | 160   | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 161   | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 162   | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 163   | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 164   | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 165   | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 166   | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 167   | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 168   | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 169   | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 170   | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 171   | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 172   | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 173   | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 174   | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 175   | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 11    | 176   | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 177   | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 178   | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 179   | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 180   | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 181   | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 182   | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 183   | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 184   | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 185   | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 186   | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 187   | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 188   | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 189   | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 190   | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 191   | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-6           | 12    | 192   | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 193   | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 194   | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 195   | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 196   | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 197   | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 198   | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 199   | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 200   | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 201   | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 202   | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 203   | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 204   | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 205   | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 206   | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 207   | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 13    | 208   | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 209   | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 210   | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 211   | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 212   | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 213   | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 214   | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 215   | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 216   | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 217   | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 218   | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 219   | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 220   | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 221   | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 222   | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 223   | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-7           | 14    | 224   | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 225   | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 226   | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 227   | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 228   | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 229   | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 230   | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 231   | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 232   | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 233   | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 234   | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 235   | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 236   | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 237   | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 238   | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 239   | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 15    | 240   | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 241   | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 242   | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 243   | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 244   | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 245   | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 246   | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 247   | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 248   | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 249   | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 250   | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 251   | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 252   | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 253   | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 254   | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 255   | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-8           | 16    | 256   | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 2     | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 3     | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 4     | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 5     | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 6     | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 7     | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 8     | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 9     | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 10    | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 11    | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 12    | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 13    | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 14    | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 15    | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 16    | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 17    | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 18    | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 19    | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 20    | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 21    | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 22    | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 23    | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 24    | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 25    | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 26    | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 27    | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 28    | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 29    | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 30    | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 31    | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 32    | 31     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 33    | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 34    | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 35    | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 36    | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 37    | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 38    | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 39    | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 40    | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 41    | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 42    | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 43    | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 44    | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 45    | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 46    | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 47    | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 3     | 48    | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 49    | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 50    | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 51    | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 52    | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 53    | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 54    | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 55    | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 56    | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 57    | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 58    | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 59    | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 60    | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 61    | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 62    | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 63    | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 4     | 64    | 31     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 5     | 65    | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 66    | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 67    | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 68    | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 69    | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 70    | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 71    | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 72    | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 73    | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 74    | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 75    | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 76    | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 77    | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 78    | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 79    | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 5     | 80    | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 81    | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 82    | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 83    | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 84    | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 85    | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 86    | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 87    | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 88    | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 89    | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 90    | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 91    | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 92    | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 93    | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 94    | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 95    | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 6     | 96    | 31     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 7     | 97    | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 98    | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 99    | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 100   | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 101   | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 102   | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 103   | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 104   | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 105   | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 106   | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 107   | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 108   | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 109   | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 110   | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 111   | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 7     | 112   | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 113   | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 114   | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 115   | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 116   | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 117   | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 118   | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 119   | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 120   | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 121   | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 122   | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 123   | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 124   | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 125   | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 126   | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 127   | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 8     | 128   | 31     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-5           | 9     | 129   | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 130   | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 131   | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 132   | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 133   | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 134   | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 135   | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 136   | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 137   | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 138   | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 139   | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 140   | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 141   | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 142   | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 143   | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 9     | 144   | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 145   | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 146   | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 147   | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 148   | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 149   | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 150   | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 151   | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 152   | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 153   | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 154   | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 155   | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 156   | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 157   | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 158   | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 159   | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-5           | 10    | 160   | 31     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-6           | 11    | 161   | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 162   | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 163   | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 164   | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 165   | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 166   | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 167   | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 168   | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 169   | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 170   | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 171   | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 172   | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 173   | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 174   | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 175   | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 11    | 176   | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 177   | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 178   | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 179   | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 180   | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 181   | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 182   | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 183   | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 184   | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 185   | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 186   | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 187   | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 188   | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 189   | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 190   | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 191   | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-6           | 12    | 192   | 31     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-7           | 13    | 193   | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 194   | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 195   | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 196   | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 197   | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 198   | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 199   | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 200   | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 201   | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 202   | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 203   | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 204   | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 205   | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 206   | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 207   | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 13    | 208   | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 209   | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 210   | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 211   | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 212   | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 213   | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 214   | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 215   | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 216   | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 217   | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 218   | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 219   | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 220   | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 221   | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 222   | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 223   | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-7           | 14    | 224   | 31     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-8           | 15    | 225   | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 226   | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 227   | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 228   | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 229   | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 230   | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 231   | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 232   | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 233   | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 234   | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 235   | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 236   | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 237   | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 238   | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 239   | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 15    | 240   | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 241   | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 242   | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 243   | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 244   | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 245   | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 246   | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 247   | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 248   | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 249   | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 250   | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 251   | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 252   | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 253   | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 254   | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 255   | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-8           | 16    | 256   | 31     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/different_value_wattmeters_diff_stdout.txt b/spec/output/different_value_wattmeters_diff_stdout.txt
index 4c90ba0a8fe0cc85f81888e32e0a4fffb0dc4fac..9de8cd6b31470799b9aeea096c78cc508bc36a98 100644
--- a/spec/output/different_value_wattmeters_diff_stdout.txt
+++ b/spec/output/different_value_wattmeters_diff_stdout.txt
@@ -4,6 +4,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
diff --git a/spec/output/different_value_wattmeters_print_stdout.txt b/spec/output/different_value_wattmeters_print_stdout.txt
index db086ef26b15de5a2209c2e415e3873c4e806777..0a031fa1cf7d53b0fa5bf6a5bbb71a60f2504a70 100644
--- a/spec/output/different_value_wattmeters_print_stdout.txt
+++ b/spec/output/different_value_wattmeters_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/different_value_wattmeters_table_stdout.txt b/spec/output/different_value_wattmeters_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/different_value_wattmeters_table_stdout.txt
+++ b/spec/output/different_value_wattmeters_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/duplicated_cpus_cores_gpus_diff_stdout.txt b/spec/output/duplicated_cpus_cores_gpus_diff_stdout.txt
index 665cedfb70d3cb470f57c75b0e57684f154aebd5..113dc382358a75f39b83f1bc1dbfb802dbd96eb1 100644
--- a/spec/output/duplicated_cpus_cores_gpus_diff_stdout.txt
+++ b/spec/output/duplicated_cpus_cores_gpus_diff_stdout.txt
@@ -4,17 +4,5 @@
 ################################
 oarnodes -Y --sql "cpu=1"
 
-################################
-# Error: GPU 1 is associated to more than one host: ["clustera-1.fakesite.grid5000.fr", "clustera-2.fakesite.grid5000.fr"].
-# You can review this situation via the following command:
-################################
-oarnodes -Y --sql "gpu=1"
-
-################################
-# Error: resources with ids [21, 22] have the same value for core (core is equal to 21)
-# You can review this situation via the following command:
-################################
-oarnodes -Y --sql "resource_id='21' OR resource_id='22'"
-
 It seems that the cluster "clustera" has some incoherence in its resource configuration (see above). The generator will abort.
 Sanity check failed
diff --git a/spec/output/duplicated_cpus_cores_gpus_print_stdout.txt b/spec/output/duplicated_cpus_cores_gpus_print_stdout.txt
index 665cedfb70d3cb470f57c75b0e57684f154aebd5..113dc382358a75f39b83f1bc1dbfb802dbd96eb1 100644
--- a/spec/output/duplicated_cpus_cores_gpus_print_stdout.txt
+++ b/spec/output/duplicated_cpus_cores_gpus_print_stdout.txt
@@ -4,17 +4,5 @@
 ################################
 oarnodes -Y --sql "cpu=1"
 
-################################
-# Error: GPU 1 is associated to more than one host: ["clustera-1.fakesite.grid5000.fr", "clustera-2.fakesite.grid5000.fr"].
-# You can review this situation via the following command:
-################################
-oarnodes -Y --sql "gpu=1"
-
-################################
-# Error: resources with ids [21, 22] have the same value for core (core is equal to 21)
-# You can review this situation via the following command:
-################################
-oarnodes -Y --sql "resource_id='21' OR resource_id='22'"
-
 It seems that the cluster "clustera" has some incoherence in its resource configuration (see above). The generator will abort.
 Sanity check failed
diff --git a/spec/output/duplicated_cpus_cores_gpus_table_stdout.txt b/spec/output/duplicated_cpus_cores_gpus_table_stdout.txt
index 665cedfb70d3cb470f57c75b0e57684f154aebd5..113dc382358a75f39b83f1bc1dbfb802dbd96eb1 100644
--- a/spec/output/duplicated_cpus_cores_gpus_table_stdout.txt
+++ b/spec/output/duplicated_cpus_cores_gpus_table_stdout.txt
@@ -4,17 +4,5 @@
 ################################
 oarnodes -Y --sql "cpu=1"
 
-################################
-# Error: GPU 1 is associated to more than one host: ["clustera-1.fakesite.grid5000.fr", "clustera-2.fakesite.grid5000.fr"].
-# You can review this situation via the following command:
-################################
-oarnodes -Y --sql "gpu=1"
-
-################################
-# Error: resources with ids [21, 22] have the same value for core (core is equal to 21)
-# You can review this situation via the following command:
-################################
-oarnodes -Y --sql "resource_id='21' OR resource_id='22'"
-
 It seems that the cluster "clustera" has some incoherence in its resource configuration (see above). The generator will abort.
 Sanity check failed
diff --git a/spec/output/empty_contiguous-grouped-by-threads_cpusets_diff_stdout.txt b/spec/output/empty_contiguous-grouped-by-threads_cpusets_diff_stdout.txt
index 568e8d1397ecba4f4c9a0442d43808bfca9e1bc8..d416f5410986f22cbea4a3c32e5a34c86b24fe61 100644
--- a/spec/output/empty_contiguous-grouped-by-threads_cpusets_diff_stdout.txt
+++ b/spec/output/empty_contiguous-grouped-by-threads_cpusets_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 15525]
     ["+", "gpu_model", "Tesla P100-SXM2-16GB"]
     ["+", "ib", "EDR"]
     ["+", "ib_count", 2]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 15525]
     ["+", "gpu_model", "Tesla P100-SXM2-16GB"]
     ["+", "ib", "EDR"]
     ["+", "ib_count", 2]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 160]
     ["+", "virtual", nil]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/empty_contiguous-grouped-by-threads_cpusets_print_stdout.txt b/spec/output/empty_contiguous-grouped-by-threads_cpusets_print_stdout.txt
index c4e002172a817f97b4e949140dd31f09903d1cdf..bf522b0cdee72d25ac24c12b83d064331c7b8e7f 100644
--- a/spec/output/empty_contiguous-grouped-by-threads_cpusets_print_stdout.txt
+++ b/spec/output/empty_contiguous-grouped-by-threads_cpusets_print_stdout.txt
@@ -79,6 +79,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -113,7 +114,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=19 -p cpuset=144 -p gpu=4 -p gpu_model='Tesla P100-SXM2-16GB' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=20 -p cpuset=152 -p gpu=4 -p gpu_model='Tesla P100-SXM2-16GB' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.24.1' -p cluster='clustera' -p nodemodel='IBM PowerNV S822LC (8335-GTB)' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p cpuarch='ppc64le' -p cpucore=10 -p cpu_count=2 -p core_count=20 -p thread_count=160 -p cputype='POWER8NVL 1.0' -p cpufreq='4.0' -p disktype='SATA/HDD' -p chassis='IBM 8335-GTB 21089EA' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=2 -p ib_rate=100 -p ib='EDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6553 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla P100-SXM2-16GB' -p gpu_count=4 -p exotic='YES' -p mic='NO' -p wattmeter='NO' -p cluster_priority=202010 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.24.1' -p cluster='clustera' -p nodemodel='IBM PowerNV S822LC (8335-GTB)' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p cpuarch='ppc64le' -p cpucore=10 -p cpu_count=2 -p core_count=20 -p thread_count=160 -p cputype='POWER8NVL 1.0' -p cpufreq='4.0' -p disktype='SATA/HDD' -p chassis='IBM 8335-GTB 21089EA' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=2 -p ib_rate=100 -p ib='EDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6553 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla P100-SXM2-16GB' -p gpu_count=4 -p gpu_mem=15525 -p exotic='YES' -p mic='NO' -p wattmeter='NO' -p cluster_priority=202010 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -142,6 +143,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=39 -p cpuset=144 -p gpu=8 -p gpu_model='Tesla P100-SXM2-16GB' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=40 -p cpuset=152 -p gpu=8 -p gpu_model='Tesla P100-SXM2-16GB' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.24.2' -p cluster='clustera' -p nodemodel='IBM PowerNV S822LC (8335-GTB)' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p cpuarch='ppc64le' -p cpucore=10 -p cpu_count=2 -p core_count=20 -p thread_count=160 -p cputype='POWER8NVL 1.0' -p cpufreq='4.0' -p disktype='SATA/HDD' -p chassis='IBM 8335-GTB 2108A0A' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=2 -p ib_rate=100 -p ib='EDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6553 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla P100-SXM2-16GB' -p gpu_count=4 -p exotic='YES' -p mic='NO' -p wattmeter='NO' -p cluster_priority=202010 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.24.2' -p cluster='clustera' -p nodemodel='IBM PowerNV S822LC (8335-GTB)' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p cpuarch='ppc64le' -p cpucore=10 -p cpu_count=2 -p core_count=20 -p thread_count=160 -p cputype='POWER8NVL 1.0' -p cpufreq='4.0' -p disktype='SATA/HDD' -p chassis='IBM 8335-GTB 2108A0A' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=2 -p ib_rate=100 -p ib='EDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=6553 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla P100-SXM2-16GB' -p gpu_count=4 -p gpu_mem=15525 -p exotic='YES' -p mic='NO' -p wattmeter='NO' -p cluster_priority=202010 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/empty_contiguous-grouped-by-threads_cpusets_table_stdout.txt b/spec/output/empty_contiguous-grouped-by-threads_cpusets_table_stdout.txt
index a32984eed1a34474614eec43b5f05595d4a47d23..faff1aee28ad78a96e52a02faf07f3e69bf64bed 100644
--- a/spec/output/empty_contiguous-grouped-by-threads_cpusets_table_stdout.txt
+++ b/spec/output/empty_contiguous-grouped-by-threads_cpusets_table_stdout.txt
@@ -1,44 +1,45 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 1     | 2     | 8        | 1    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 1     | 3     | 16       | 1    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 1     | 4     | 24       | 1    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 1     | 5     | 32       | 1    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 1     | 6     | 40       | 2    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 1     | 7     | 48       | 2    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 1     | 8     | 56       | 2    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 1     | 9     | 64       | 2    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 1     | 10    | 72       | 2    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 11    | 80       | 3    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 12    | 88       | 3    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 13    | 96       | 3    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 14    | 104      | 3    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 15    | 112      | 3    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 16    | 120      | 4    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 17    | 128      | 4    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 18    | 136      | 4    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 19    | 144      | 4    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-1           | 2     | 20    | 152      | 4    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 21    | 0        | 5    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 22    | 8        | 5    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 23    | 16       | 5    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 24    | 24       | 5    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 25    | 32       | 5    | 0                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 26    | 40       | 6    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 27    | 48       | 6    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 28    | 56       | 6    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 29    | 64       | 6    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 3     | 30    | 72       | 6    | 1                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 31    | 80       | 7    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 32    | 88       | 7    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 33    | 96       | 7    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 34    | 104      | 7    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 35    | 112      | 7    | 2                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 36    | 120      | 8    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 37    | 128      | 8    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 38    | 136      | 8    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 39    | 144      | 8    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-|  clustera | clustera-2           | 4     | 40    | 152      | 8    | 3                    | POWER8NVL 1.0                  | Tesla P100-SXM2-16GB          |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | POWER8NVL 1.0             | 1    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 1     | 2     | 8      | POWER8NVL 1.0             | 1    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 1     | 3     | 16     | POWER8NVL 1.0             | 1    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 1     | 4     | 24     | POWER8NVL 1.0             | 1    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 1     | 5     | 32     | POWER8NVL 1.0             | 1    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 1     | 6     | 40     | POWER8NVL 1.0             | 2    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 1     | 7     | 48     | POWER8NVL 1.0             | 2    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 1     | 8     | 56     | POWER8NVL 1.0             | 2    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 1     | 9     | 64     | POWER8NVL 1.0             | 2    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 1     | 10    | 72     | POWER8NVL 1.0             | 2    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 11    | 80     | POWER8NVL 1.0             | 3    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 12    | 88     | POWER8NVL 1.0             | 3    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 13    | 96     | POWER8NVL 1.0             | 3    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 14    | 104    | POWER8NVL 1.0             | 3    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 15    | 112    | POWER8NVL 1.0             | 3    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 16    | 120    | POWER8NVL 1.0             | 4    | 3          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 17    | 128    | POWER8NVL 1.0             | 4    | 3          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 18    | 136    | POWER8NVL 1.0             | 4    | 3          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 19    | 144    | POWER8NVL 1.0             | 4    | 3          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-1           | 2     | 20    | 152    | POWER8NVL 1.0             | 4    | 3          | Tesla P100-SXM2-16GB           |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 21    | 0      | POWER8NVL 1.0             | 5    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 3     | 22    | 8      | POWER8NVL 1.0             | 5    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 3     | 23    | 16     | POWER8NVL 1.0             | 5    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 3     | 24    | 24     | POWER8NVL 1.0             | 5    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 3     | 25    | 32     | POWER8NVL 1.0             | 5    | 0          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 3     | 26    | 40     | POWER8NVL 1.0             | 6    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 3     | 27    | 48     | POWER8NVL 1.0             | 6    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 3     | 28    | 56     | POWER8NVL 1.0             | 6    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 3     | 29    | 64     | POWER8NVL 1.0             | 6    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 3     | 30    | 72     | POWER8NVL 1.0             | 6    | 1          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 31    | 80     | POWER8NVL 1.0             | 7    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 32    | 88     | POWER8NVL 1.0             | 7    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 33    | 96     | POWER8NVL 1.0             | 7    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 34    | 104    | POWER8NVL 1.0             | 7    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 35    | 112    | POWER8NVL 1.0             | 7    | 2          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 36    | 120    | POWER8NVL 1.0             | 8    | 3          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 37    | 128    | POWER8NVL 1.0             | 8    | 3          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 38    | 136    | POWER8NVL 1.0             | 8    | 3          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 39    | 144    | POWER8NVL 1.0             | 8    | 3          | Tesla P100-SXM2-16GB           |
+| clustera    | clustera-2           | 4     | 40    | 152    | POWER8NVL 1.0             | 8    | 3          | Tesla P100-SXM2-16GB           |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/empty_contiguous-including-threads_cpusets_diff_stdout.txt b/spec/output/empty_contiguous-including-threads_cpusets_diff_stdout.txt
index 01f4141d779194b143b271e8fc56062c179fabe1..99f677707cf631699cd67bd5fe5bb7d191e7e596 100644
--- a/spec/output/empty_contiguous-including-threads_cpusets_diff_stdout.txt
+++ b/spec/output/empty_contiguous-including-threads_cpusets_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 256]
     ["+", "virtual", "arm64"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/empty_contiguous-including-threads_cpusets_print_stdout.txt b/spec/output/empty_contiguous-including-threads_cpusets_print_stdout.txt
index 39211488a27ed509db4398b7e00e4a652994c078..910f329426d93e371c326b37f729fb3344ad5d15 100644
--- a/spec/output/empty_contiguous-including-threads_cpusets_print_stdout.txt
+++ b/spec/output/empty_contiguous-including-threads_cpusets_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -158,7 +159,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=63 -p cpuset=158
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=64 -p cpuset=159
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.54.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='arm64' -p cpuarch='aarch64' -p cpucore=32 -p cpu_count=2 -p core_count=64 -p thread_count=256 -p cputype='ThunderX2 99xx' -p cpufreq='2.2' -p disktype='SAS/SSD' -p chassis='GIGABYTE R181-T92-00 GJG5N9812A0001' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=0 -p production='NO' -p maintenance='YES' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.54.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='arm64' -p cpuarch='aarch64' -p cpucore=32 -p cpu_count=2 -p core_count=64 -p thread_count=256 -p cputype='ThunderX2 99xx' -p cpufreq='2.2' -p disktype='SAS/SSD' -p chassis='GIGABYTE R181-T92-00 GJG5N9812A0001' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=0 -p production='NO' -p maintenance='YES' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -231,6 +232,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=127 -p cpuset=158
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=128 -p cpuset=159
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.54.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='arm64' -p cpuarch='aarch64' -p cpucore=32 -p cpu_count=2 -p core_count=64 -p thread_count=256 -p cputype='ThunderX2 99xx' -p cpufreq='2.2' -p disktype='SAS/SSD' -p chassis='GIGABYTE R181-T92-00 GJG5N9812A0004' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=0 -p production='NO' -p maintenance='YES' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.54.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='arm64' -p cpuarch='aarch64' -p cpucore=32 -p cpu_count=2 -p core_count=64 -p thread_count=256 -p cputype='ThunderX2 99xx' -p cpufreq='2.2' -p disktype='SAS/SSD' -p chassis='GIGABYTE R181-T92-00 GJG5N9812A0004' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=0 -p production='NO' -p maintenance='YES' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/empty_contiguous-including-threads_cpusets_table_stdout.txt b/spec/output/empty_contiguous-including-threads_cpusets_table_stdout.txt
index 04ab6b2361d01f65ac6182817695f8c29ed64933..810210fb4d6334dfde5973ec10d5191b2489edcd 100644
--- a/spec/output/empty_contiguous-including-threads_cpusets_table_stdout.txt
+++ b/spec/output/empty_contiguous-including-threads_cpusets_table_stdout.txt
@@ -1,132 +1,133 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 2     | 1        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 3     | 2        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 4     | 3        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 5     | 4        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 6     | 5        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 7     | 6        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 8     | 7        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 9     | 8        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 10    | 9        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 11    | 10       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 12    | 11       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 13    | 12       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 14    | 13       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 15    | 14       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 16    | 15       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 17    | 16       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 18    | 17       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 19    | 18       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 20    | 19       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 21    | 20       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 22    | 21       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 23    | 22       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 24    | 23       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 25    | 24       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 26    | 25       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 27    | 26       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 28    | 27       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 29    | 28       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 30    | 29       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 31    | 30       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 1     | 32    | 31       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 33    | 128      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 34    | 129      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 35    | 130      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 36    | 131      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 37    | 132      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 38    | 133      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 39    | 134      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 40    | 135      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 41    | 136      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 42    | 137      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 43    | 138      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 44    | 139      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 45    | 140      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 46    | 141      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 47    | 142      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 48    | 143      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 49    | 144      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 50    | 145      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 51    | 146      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 52    | 147      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 53    | 148      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 54    | 149      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 55    | 150      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 56    | 151      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 57    | 152      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 58    | 153      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 59    | 154      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 60    | 155      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 61    | 156      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 62    | 157      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 63    | 158      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-1           | 2     | 64    | 159      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 65    | 0        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 66    | 1        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 67    | 2        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 68    | 3        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 69    | 4        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 70    | 5        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 71    | 6        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 72    | 7        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 73    | 8        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 74    | 9        |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 75    | 10       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 76    | 11       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 77    | 12       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 78    | 13       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 79    | 14       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 80    | 15       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 81    | 16       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 82    | 17       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 83    | 18       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 84    | 19       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 85    | 20       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 86    | 21       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 87    | 22       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 88    | 23       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 89    | 24       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 90    | 25       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 91    | 26       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 92    | 27       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 93    | 28       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 94    | 29       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 95    | 30       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 3     | 96    | 31       |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 97    | 128      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 98    | 129      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 99    | 130      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 100   | 131      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 101   | 132      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 102   | 133      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 103   | 134      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 104   | 135      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 105   | 136      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 106   | 137      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 107   | 138      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 108   | 139      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 109   | 140      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 110   | 141      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 111   | 142      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 112   | 143      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 113   | 144      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 114   | 145      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 115   | 146      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 116   | 147      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 117   | 148      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 118   | 149      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 119   | 150      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 120   | 151      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 121   | 152      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 122   | 153      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 123   | 154      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 124   | 155      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 125   | 156      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 126   | 157      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 127   | 158      |      |                      | ThunderX2 99xx                 |                               |
-|  clustera | clustera-2           | 4     | 128   | 159      |      |                      | ThunderX2 99xx                 |                               |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 2     | 1      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 3     | 2      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 4     | 3      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 5     | 4      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 6     | 5      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 7     | 6      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 8     | 7      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 9     | 8      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 10    | 9      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 11    | 10     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 12    | 11     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 13    | 12     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 14    | 13     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 15    | 14     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 16    | 15     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 17    | 16     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 18    | 17     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 19    | 18     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 20    | 19     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 21    | 20     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 22    | 21     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 23    | 22     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 24    | 23     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 25    | 24     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 26    | 25     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 27    | 26     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 28    | 27     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 29    | 28     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 30    | 29     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 31    | 30     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 1     | 32    | 31     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 33    | 128    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 34    | 129    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 35    | 130    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 36    | 131    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 37    | 132    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 38    | 133    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 39    | 134    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 40    | 135    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 41    | 136    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 42    | 137    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 43    | 138    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 44    | 139    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 45    | 140    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 46    | 141    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 47    | 142    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 48    | 143    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 49    | 144    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 50    | 145    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 51    | 146    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 52    | 147    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 53    | 148    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 54    | 149    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 55    | 150    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 56    | 151    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 57    | 152    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 58    | 153    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 59    | 154    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 60    | 155    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 61    | 156    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 62    | 157    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 63    | 158    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-1           | 2     | 64    | 159    | ThunderX2 99xx            |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 65    | 0      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 66    | 1      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 67    | 2      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 68    | 3      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 69    | 4      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 70    | 5      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 71    | 6      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 72    | 7      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 73    | 8      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 74    | 9      | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 75    | 10     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 76    | 11     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 77    | 12     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 78    | 13     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 79    | 14     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 80    | 15     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 81    | 16     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 82    | 17     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 83    | 18     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 84    | 19     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 85    | 20     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 86    | 21     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 87    | 22     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 88    | 23     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 89    | 24     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 90    | 25     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 91    | 26     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 92    | 27     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 93    | 28     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 94    | 29     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 95    | 30     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 3     | 96    | 31     | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 97    | 128    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 98    | 129    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 99    | 130    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 100   | 131    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 101   | 132    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 102   | 133    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 103   | 134    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 104   | 135    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 105   | 136    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 106   | 137    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 107   | 138    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 108   | 139    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 109   | 140    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 110   | 141    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 111   | 142    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 112   | 143    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 113   | 144    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 114   | 145    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 115   | 146    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 116   | 147    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 117   | 148    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 118   | 149    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 119   | 150    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 120   | 151    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 121   | 152    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 122   | 153    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 123   | 154    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 124   | 155    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 125   | 156    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 126   | 157    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 127   | 158    | ThunderX2 99xx            |      |            |                                |
+| clustera    | clustera-2           | 4     | 128   | 159    | ThunderX2 99xx            |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/empty_diff_stdout.txt b/spec/output/empty_diff_stdout.txt
index 38c9d8816c456021d2ae723a8e63a3d969ca8811..bf67df8d43670269ad6978554ee239006bcc11da 100644
--- a/spec/output/empty_diff_stdout.txt
+++ b/spec/output/empty_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/empty_print_stdout.txt b/spec/output/empty_print_stdout.txt
index 8220b8346ea0e2f583a2b6011505d026ce5cc60e..264d90efd8d9b64d10914ba1e73532082c37caa4 100644
--- a/spec/output/empty_print_stdout.txt
+++ b/spec/output/empty_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/empty_round_robin_diff_stdout.txt b/spec/output/empty_round_robin_diff_stdout.txt
index 38c9d8816c456021d2ae723a8e63a3d969ca8811..bf67df8d43670269ad6978554ee239006bcc11da 100644
--- a/spec/output/empty_round_robin_diff_stdout.txt
+++ b/spec/output/empty_round_robin_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/empty_round_robin_print_stdout.txt b/spec/output/empty_round_robin_print_stdout.txt
index fb3f18665931cd84ae9f0f2887fd7f7036a138a6..68f97ad2590b4bbc008688ab7aef55a2d556246a 100644
--- a/spec/output/empty_round_robin_print_stdout.txt
+++ b/spec/output/empty_round_robin_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=15 -p cpuset=13 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=31 -p cpuset=13 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/empty_round_robin_table_stdout.txt b/spec/output/empty_round_robin_table_stdout.txt
index 45b1de4234d26f8800445328c1213f183fab7c84..0b5ea9f8feb4813324ce567c5ae3554b8adec7dd 100644
--- a/spec/output/empty_round_robin_table_stdout.txt
+++ b/spec/output/empty_round_robin_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 4        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 6        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 8        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 10       | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 12       | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 14       | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 1        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 3        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 5        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 7        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 9        | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 11       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 4        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 6        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 8        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 10       | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 12       | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 14       | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 1        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 3        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 5        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 7        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 9        | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 11       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 4      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 6      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 8      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 10     | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 12     | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 14     | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 1      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 3      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 5      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 7      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 9      | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 11     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 4      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 6      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 8      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 10     | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 12     | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 14     | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 1      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 3      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 5      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 7      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 9      | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 11     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/empty_table_stdout.txt b/spec/output/empty_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/empty_table_stdout.txt
+++ b/spec/output/empty_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/empty_with_disk_diff_stdout.txt b/spec/output/empty_with_disk_diff_stdout.txt
index 38c9d8816c456021d2ae723a8e63a3d969ca8811..bf67df8d43670269ad6978554ee239006bcc11da 100644
--- a/spec/output/empty_with_disk_diff_stdout.txt
+++ b/spec/output/empty_with_disk_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/empty_with_disk_print_stdout.txt b/spec/output/empty_with_disk_print_stdout.txt
index 9c1b19ae87185d423d11ff344549bf43f0376138..41bc37041f9e3dfffd7942eadffecd6b1e1d3b49 100644
--- a/spec/output/empty_with_disk_print_stdout.txt
+++ b/spec/output/empty_with_disk_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -112,7 +113,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -137,6 +138,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/empty_with_disk_table_stdout.txt b/spec/output/empty_with_disk_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/empty_with_disk_table_stdout.txt
+++ b/spec/output/empty_with_disk_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/empty_without_gpu_diff_stdout.txt b/spec/output/empty_without_gpu_diff_stdout.txt
index 38c9d8816c456021d2ae723a8e63a3d969ca8811..bf67df8d43670269ad6978554ee239006bcc11da 100644
--- a/spec/output/empty_without_gpu_diff_stdout.txt
+++ b/spec/output/empty_without_gpu_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/empty_without_gpu_print_stdout.txt b/spec/output/empty_without_gpu_print_stdout.txt
index 9c1b19ae87185d423d11ff344549bf43f0376138..41bc37041f9e3dfffd7942eadffecd6b1e1d3b49 100644
--- a/spec/output/empty_without_gpu_print_stdout.txt
+++ b/spec/output/empty_without_gpu_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -112,7 +113,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -137,6 +138,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/empty_without_gpu_table_stdout.txt b/spec/output/empty_without_gpu_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/empty_without_gpu_table_stdout.txt
+++ b/spec/output/empty_without_gpu_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/graffiti-all-gpus_diff_stdout.txt b/spec/output/graffiti-all-gpus_diff_stdout.txt
index 5fac025605b7c5dff163b7de3c4b34015c92a34b..9b74fa7637c013624a4ec7393bafea62593c8c8e 100644
--- a/spec/output/graffiti-all-gpus_diff_stdout.txt
+++ b/spec/output/graffiti-all-gpus_diff_stdout.txt
@@ -5,6 +5,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 1]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2: same modifications as above
   clustera-3: same modifications as above
@@ -18,6 +19,6 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
   clustera-11: same modifications as above
   clustera-12: same modifications as above
   clustera-13: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
 Properties existing on the fakesite server but not managed/known by the generator: disk, diskpath.
 Hint: you can delete properties with 'oarproperty -d <property>' or add them to the ignore list in lib/lib-oar-properties.rb.
diff --git a/spec/output/graffiti-all-gpus_print_stdout.txt b/spec/output/graffiti-all-gpus_print_stdout.txt
index 2434d82fc33184773a8f15eab82e8fa671a5ceb5..dc976353e6004723549326cee2f6069caf87328b 100644
--- a/spec/output/graffiti-all-gpus_print_stdout.txt
+++ b/spec/output/graffiti-all-gpus_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9664'
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9665' AND type='default'" -p cpu=1616 -p core=8541 -p cpuset=13 -p gpu=56 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9666' AND type='default'" -p cpu=1616 -p core=8542 -p cpuset=15 -p gpu=56 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,7 +136,7 @@ oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9680'
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9681' AND type='default'" -p cpu=1618 -p core=8557 -p cpuset=13 -p gpu=60 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9682' AND type='default'" -p cpu=1618 -p core=8558 -p cpuset=15 -p gpu=60 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -160,7 +161,7 @@ oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9696'
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9697' AND type='default'" -p cpu=1620 -p core=8573 -p cpuset=13 -p gpu=64 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9698' AND type='default'" -p cpu=1620 -p core=8574 -p cpuset=15 -p gpu=64 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-3.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -185,7 +186,7 @@ oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9712'
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9713' AND type='default'" -p cpu=1622 -p core=8589 -p cpuset=13 -p gpu=68 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9714' AND type='default'" -p cpu=1622 -p core=8590 -p cpuset=15 -p gpu=68 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-4.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -210,7 +211,7 @@ oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9728'
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9729' AND type='default'" -p cpu=1624 -p core=8605 -p cpuset=13 -p gpu=72 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9730' AND type='default'" -p cpu=1624 -p core=8606 -p cpuset=15 -p gpu=72 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-5.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -235,7 +236,7 @@ oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9744'
 oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9745' AND type='default'" -p cpu=1626 -p core=8621 -p cpuset=13 -p gpu=76 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9746' AND type='default'" -p cpu=1626 -p core=8622 -p cpuset=15 -p gpu=76 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-6.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -260,7 +261,7 @@ oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9760'
 oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9761' AND type='default'" -p cpu=1628 -p core=8637 -p cpuset=13 -p gpu=80 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9762' AND type='default'" -p cpu=1628 -p core=8638 -p cpuset=15 -p gpu=80 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-7.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -285,7 +286,7 @@ oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9776'
 oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9777' AND type='default'" -p cpu=1630 -p core=8653 -p cpuset=13 -p gpu=84 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9778' AND type='default'" -p cpu=1630 -p core=8654 -p cpuset=15 -p gpu=84 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-8.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -310,7 +311,7 @@ oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9792'
 oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9793' AND type='default'" -p cpu=1632 -p core=8669 -p cpuset=13 -p gpu=88 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9794' AND type='default'" -p cpu=1632 -p core=8670 -p cpuset=15 -p gpu=88 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-9.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -335,7 +336,7 @@ oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9808
 oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9809' AND type='default'" -p cpu=1634 -p core=8685 -p cpuset=13 -p gpu=92 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9810' AND type='default'" -p cpu=1634 -p core=8686 -p cpuset=15 -p gpu=92 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-10.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -360,7 +361,7 @@ oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9824
 oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9825' AND type='default'" -p cpu=1636 -p core=8701 -p cpuset=13 -p gpu=96 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9826' AND type='default'" -p cpu=1636 -p core=8702 -p cpuset=15 -p gpu=96 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-11.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -385,7 +386,7 @@ oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9840
 oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9841' AND type='default'" -p cpu=1638 -p core=8717 -p cpuset=13 -p gpu=100 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9842' AND type='default'" -p cpu=1638 -p core=8718 -p cpuset=15 -p gpu=100 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-12.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -410,6 +411,6 @@ oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9856
 oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9857' AND type='default'" -p cpu=1640 -p core=8733 -p cpuset=13 -p gpu=104 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9858' AND type='default'" -p cpu=1640 -p core=8734 -p cpuset=15 -p gpu=104 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-13.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/graffiti-all-gpus_table_stdout.txt b/spec/output/graffiti-all-gpus_table_stdout.txt
index 5b7e29d6409a0aa8efaa18f3f0c648dbe3471c9f..d574e7889b458369dd5fa6aed8c7d1ce02491996 100644
--- a/spec/output/graffiti-all-gpus_table_stdout.txt
+++ b/spec/output/graffiti-all-gpus_table_stdout.txt
@@ -1,212 +1,224 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1615  | 8527  | 0        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8528  | 2        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8529  | 4        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8530  | 6        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8531  | 8        | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8532  | 10       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8533  | 12       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8534  | 14       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8535  | 1        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8536  | 3        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8537  | 5        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8538  | 7        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8539  | 9        | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8540  | 11       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8541  | 13       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8542  | 15       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8543  | 0        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8544  | 2        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8545  | 4        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8546  | 6        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8547  | 8        | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8548  | 10       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8549  | 12       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8550  | 14       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8551  | 1        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8552  | 3        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8553  | 5        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8554  | 7        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8555  | 9        | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8556  | 11       | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8557  | 13       | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8558  | 15       | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8559  | 0        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8560  | 2        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8561  | 4        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8562  | 6        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8563  | 8        | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8564  | 10       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8565  | 12       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8566  | 14       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8567  | 1        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8568  | 3        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8569  | 5        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8570  | 7        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8571  | 9        | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8572  | 11       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8573  | 13       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8574  | 15       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8575  | 0        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8576  | 2        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8577  | 4        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8578  | 6        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8579  | 8        | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8580  | 10       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8581  | 12       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8582  | 14       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8583  | 1        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8584  | 3        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8585  | 5        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8586  | 7        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8587  | 9        | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8588  | 11       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8589  | 13       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8590  | 15       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8591  | 0        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8592  | 2        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8593  | 4        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8594  | 6        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8595  | 8        | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8596  | 10       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8597  | 12       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8598  | 14       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8599  | 1        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8600  | 3        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8601  | 5        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8602  | 7        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8603  | 9        | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8604  | 11       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8605  | 13       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8606  | 15       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8607  | 0        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8608  | 2        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8609  | 4        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8610  | 6        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8611  | 8        | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8612  | 10       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8613  | 12       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8614  | 14       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8615  | 1        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8616  | 3        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8617  | 5        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8618  | 7        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8619  | 9        | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8620  | 11       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8621  | 13       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8622  | 15       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8623  | 0        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8624  | 2        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8625  | 4        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8626  | 6        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8627  | 8        | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8628  | 10       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8629  | 12       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8630  | 14       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8631  | 1        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8632  | 3        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8633  | 5        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8634  | 7        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8635  | 9        | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8636  | 11       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8637  | 13       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8638  | 15       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8639  | 0        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8640  | 2        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8641  | 4        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8642  | 6        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8643  | 8        | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8644  | 10       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8645  | 12       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8646  | 14       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8647  | 1        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8648  | 3        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8649  | 5        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8650  | 7        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8651  | 9        | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8652  | 11       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8653  | 13       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8654  | 15       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8655  | 0        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8656  | 2        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8657  | 4        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8658  | 6        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8659  | 8        | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8660  | 10       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8661  | 12       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8662  | 14       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8663  | 1        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8664  | 3        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8665  | 5        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8666  | 7        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8667  | 9        | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8668  | 11       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8669  | 13       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8670  | 15       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8671  | 0        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8672  | 2        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8673  | 4        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8674  | 6        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8675  | 8        | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8676  | 10       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8677  | 12       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8678  | 14       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8679  | 1        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8680  | 3        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8681  | 5        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8682  | 7        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8683  | 9        | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8684  | 11       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8685  | 13       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8686  | 15       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8687  | 0        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8688  | 2        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8689  | 4        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8690  | 6        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8691  | 8        | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8692  | 10       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8693  | 12       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8694  | 14       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8695  | 1        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8696  | 3        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8697  | 5        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8698  | 7        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8699  | 9        | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8700  | 11       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8701  | 13       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8702  | 15       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8703  | 0        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8704  | 2        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8705  | 4        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8706  | 6        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8707  | 8        | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8708  | 10       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8709  | 12       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8710  | 14       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8711  | 1        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8712  | 3        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8713  | 5        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8714  | 7        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8715  | 9        | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8716  | 11       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8717  | 13       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8718  | 15       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8719  | 0        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8720  | 2        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8721  | 4        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8722  | 6        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8723  | 8        | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8724  | 10       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8725  | 12       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8726  | 14       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8727  | 1        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8728  | 3        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8729  | 5        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8730  | 7        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8731  | 9        | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8732  | 11       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8733  | 13       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8734  | 15       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1615  | 8527  | 0      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8528  | 2      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8529  | 4      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8530  | 6      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8531  | 8      | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8532  | 10     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8533  | 12     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8534  | 14     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8535  | 1      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8536  | 3      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8537  | 5      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8538  | 7      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8539  | 9      | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8540  | 11     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8541  | 13     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8542  | 15     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 1617  | 8543  | 0      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8544  | 2      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8545  | 4      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8546  | 6      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8547  | 8      | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8548  | 10     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8549  | 12     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8550  | 14     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8551  | 1      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8552  | 3      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8553  | 5      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8554  | 7      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8555  | 9      | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8556  | 11     | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8557  | 13     | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8558  | 15     | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 1619  | 8559  | 0      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8560  | 2      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8561  | 4      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8562  | 6      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8563  | 8      | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8564  | 10     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8565  | 12     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8566  | 14     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8567  | 1      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8568  | 3      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8569  | 5      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8570  | 7      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8571  | 9      | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8572  | 11     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8573  | 13     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8574  | 15     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 1621  | 8575  | 0      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8576  | 2      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8577  | 4      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8578  | 6      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8579  | 8      | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8580  | 10     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8581  | 12     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8582  | 14     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8583  | 1      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8584  | 3      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8585  | 5      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8586  | 7      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8587  | 9      | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8588  | 11     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8589  | 13     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8590  | 15     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-5           | 1623  | 8591  | 0      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8592  | 2      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8593  | 4      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8594  | 6      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8595  | 8      | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8596  | 10     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8597  | 12     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8598  | 14     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8599  | 1      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8600  | 3      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8601  | 5      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8602  | 7      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8603  | 9      | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8604  | 11     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8605  | 13     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8606  | 15     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-6           | 1625  | 8607  | 0      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8608  | 2      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8609  | 4      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8610  | 6      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8611  | 8      | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8612  | 10     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8613  | 12     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8614  | 14     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8615  | 1      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8616  | 3      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8617  | 5      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8618  | 7      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8619  | 9      | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8620  | 11     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8621  | 13     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8622  | 15     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-7           | 1627  | 8623  | 0      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8624  | 2      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8625  | 4      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8626  | 6      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8627  | 8      | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8628  | 10     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8629  | 12     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8630  | 14     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8631  | 1      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8632  | 3      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8633  | 5      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8634  | 7      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8635  | 9      | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8636  | 11     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8637  | 13     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8638  | 15     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-8           | 1629  | 8639  | 0      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8640  | 2      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8641  | 4      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8642  | 6      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8643  | 8      | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8644  | 10     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8645  | 12     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8646  | 14     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8647  | 1      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8648  | 3      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8649  | 5      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8650  | 7      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8651  | 9      | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8652  | 11     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8653  | 13     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8654  | 15     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-9           | 1631  | 8655  | 0      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8656  | 2      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8657  | 4      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8658  | 6      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8659  | 8      | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8660  | 10     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8661  | 12     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8662  | 14     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8663  | 1      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8664  | 3      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8665  | 5      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8666  | 7      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8667  | 9      | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8668  | 11     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8669  | 13     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8670  | 15     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-10          | 1633  | 8671  | 0      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8672  | 2      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8673  | 4      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8674  | 6      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8675  | 8      | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8676  | 10     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8677  | 12     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8678  | 14     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8679  | 1      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8680  | 3      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8681  | 5      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8682  | 7      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8683  | 9      | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8684  | 11     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8685  | 13     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8686  | 15     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-11          | 1635  | 8687  | 0      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8688  | 2      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8689  | 4      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8690  | 6      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8691  | 8      | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8692  | 10     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8693  | 12     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8694  | 14     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8695  | 1      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8696  | 3      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8697  | 5      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8698  | 7      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8699  | 9      | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8700  | 11     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8701  | 13     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8702  | 15     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-12          | 1637  | 8703  | 0      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8704  | 2      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8705  | 4      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8706  | 6      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8707  | 8      | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8708  | 10     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8709  | 12     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8710  | 14     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8711  | 1      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8712  | 3      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8713  | 5      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8714  | 7      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8715  | 9      | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8716  | 11     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8717  | 13     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8718  | 15     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-13          | 1639  | 8719  | 0      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8720  | 2      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8721  | 4      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8722  | 6      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8723  | 8      | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8724  | 10     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8725  | 12     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8726  | 14     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8727  | 1      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8728  | 3      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8729  | 5      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8730  | 7      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8731  | 9      | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8732  | 11     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8733  | 13     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8734  | 15     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_diff_stdout.txt b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_diff_stdout.txt
index 5fac025605b7c5dff163b7de3c4b34015c92a34b..9b74fa7637c013624a4ec7393bafea62593c8c8e 100644
--- a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_diff_stdout.txt
+++ b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_diff_stdout.txt
@@ -5,6 +5,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 1]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2: same modifications as above
   clustera-3: same modifications as above
@@ -18,6 +19,6 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
   clustera-11: same modifications as above
   clustera-12: same modifications as above
   clustera-13: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
 Properties existing on the fakesite server but not managed/known by the generator: disk, diskpath.
 Hint: you can delete properties with 'oarproperty -d <property>' or add them to the ignore list in lib/lib-oar-properties.rb.
diff --git a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_print_stdout.txt b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_print_stdout.txt
index 2434d82fc33184773a8f15eab82e8fa671a5ceb5..dc976353e6004723549326cee2f6069caf87328b 100644
--- a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_print_stdout.txt
+++ b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9664'
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9665' AND type='default'" -p cpu=1616 -p core=8541 -p cpuset=13 -p gpu=56 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9666' AND type='default'" -p cpu=1616 -p core=8542 -p cpuset=15 -p gpu=56 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,7 +136,7 @@ oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9680'
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9681' AND type='default'" -p cpu=1618 -p core=8557 -p cpuset=13 -p gpu=60 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9682' AND type='default'" -p cpu=1618 -p core=8558 -p cpuset=15 -p gpu=60 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -160,7 +161,7 @@ oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9696'
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9697' AND type='default'" -p cpu=1620 -p core=8573 -p cpuset=13 -p gpu=64 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9698' AND type='default'" -p cpu=1620 -p core=8574 -p cpuset=15 -p gpu=64 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-3.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -185,7 +186,7 @@ oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9712'
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9713' AND type='default'" -p cpu=1622 -p core=8589 -p cpuset=13 -p gpu=68 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9714' AND type='default'" -p cpu=1622 -p core=8590 -p cpuset=15 -p gpu=68 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-4.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -210,7 +211,7 @@ oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9728'
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9729' AND type='default'" -p cpu=1624 -p core=8605 -p cpuset=13 -p gpu=72 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9730' AND type='default'" -p cpu=1624 -p core=8606 -p cpuset=15 -p gpu=72 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-5.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -235,7 +236,7 @@ oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9744'
 oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9745' AND type='default'" -p cpu=1626 -p core=8621 -p cpuset=13 -p gpu=76 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9746' AND type='default'" -p cpu=1626 -p core=8622 -p cpuset=15 -p gpu=76 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-6.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -260,7 +261,7 @@ oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9760'
 oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9761' AND type='default'" -p cpu=1628 -p core=8637 -p cpuset=13 -p gpu=80 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9762' AND type='default'" -p cpu=1628 -p core=8638 -p cpuset=15 -p gpu=80 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-7.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -285,7 +286,7 @@ oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9776'
 oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9777' AND type='default'" -p cpu=1630 -p core=8653 -p cpuset=13 -p gpu=84 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9778' AND type='default'" -p cpu=1630 -p core=8654 -p cpuset=15 -p gpu=84 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-8.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -310,7 +311,7 @@ oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9792'
 oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9793' AND type='default'" -p cpu=1632 -p core=8669 -p cpuset=13 -p gpu=88 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9794' AND type='default'" -p cpu=1632 -p core=8670 -p cpuset=15 -p gpu=88 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-9.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -335,7 +336,7 @@ oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9808
 oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9809' AND type='default'" -p cpu=1634 -p core=8685 -p cpuset=13 -p gpu=92 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9810' AND type='default'" -p cpu=1634 -p core=8686 -p cpuset=15 -p gpu=92 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-10.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -360,7 +361,7 @@ oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9824
 oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9825' AND type='default'" -p cpu=1636 -p core=8701 -p cpuset=13 -p gpu=96 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9826' AND type='default'" -p cpu=1636 -p core=8702 -p cpuset=15 -p gpu=96 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-11.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -385,7 +386,7 @@ oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9840
 oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9841' AND type='default'" -p cpu=1638 -p core=8717 -p cpuset=13 -p gpu=100 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9842' AND type='default'" -p cpu=1638 -p core=8718 -p cpuset=15 -p gpu=100 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-12.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -410,6 +411,6 @@ oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9856
 oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9857' AND type='default'" -p cpu=1640 -p core=8733 -p cpuset=13 -p gpu=104 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9858' AND type='default'" -p cpu=1640 -p core=8734 -p cpuset=15 -p gpu=104 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-13.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_table_stdout.txt b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_table_stdout.txt
index 5b7e29d6409a0aa8efaa18f3f0c648dbe3471c9f..d574e7889b458369dd5fa6aed8c7d1ce02491996 100644
--- a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_table_stdout.txt
+++ b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added-OAR-updated_table_stdout.txt
@@ -1,212 +1,224 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1615  | 8527  | 0        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8528  | 2        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8529  | 4        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8530  | 6        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8531  | 8        | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8532  | 10       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8533  | 12       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8534  | 14       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8535  | 1        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8536  | 3        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8537  | 5        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8538  | 7        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8539  | 9        | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8540  | 11       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8541  | 13       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8542  | 15       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8543  | 0        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8544  | 2        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8545  | 4        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8546  | 6        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8547  | 8        | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8548  | 10       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8549  | 12       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8550  | 14       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8551  | 1        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8552  | 3        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8553  | 5        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8554  | 7        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8555  | 9        | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8556  | 11       | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8557  | 13       | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8558  | 15       | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8559  | 0        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8560  | 2        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8561  | 4        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8562  | 6        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8563  | 8        | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8564  | 10       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8565  | 12       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8566  | 14       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8567  | 1        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8568  | 3        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8569  | 5        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8570  | 7        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8571  | 9        | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8572  | 11       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8573  | 13       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8574  | 15       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8575  | 0        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8576  | 2        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8577  | 4        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8578  | 6        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8579  | 8        | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8580  | 10       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8581  | 12       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8582  | 14       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8583  | 1        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8584  | 3        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8585  | 5        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8586  | 7        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8587  | 9        | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8588  | 11       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8589  | 13       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8590  | 15       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8591  | 0        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8592  | 2        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8593  | 4        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8594  | 6        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8595  | 8        | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8596  | 10       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8597  | 12       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8598  | 14       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8599  | 1        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8600  | 3        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8601  | 5        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8602  | 7        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8603  | 9        | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8604  | 11       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8605  | 13       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8606  | 15       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8607  | 0        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8608  | 2        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8609  | 4        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8610  | 6        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8611  | 8        | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8612  | 10       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8613  | 12       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8614  | 14       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8615  | 1        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8616  | 3        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8617  | 5        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8618  | 7        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8619  | 9        | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8620  | 11       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8621  | 13       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8622  | 15       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8623  | 0        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8624  | 2        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8625  | 4        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8626  | 6        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8627  | 8        | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8628  | 10       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8629  | 12       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8630  | 14       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8631  | 1        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8632  | 3        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8633  | 5        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8634  | 7        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8635  | 9        | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8636  | 11       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8637  | 13       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8638  | 15       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8639  | 0        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8640  | 2        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8641  | 4        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8642  | 6        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8643  | 8        | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8644  | 10       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8645  | 12       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8646  | 14       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8647  | 1        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8648  | 3        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8649  | 5        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8650  | 7        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8651  | 9        | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8652  | 11       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8653  | 13       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8654  | 15       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8655  | 0        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8656  | 2        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8657  | 4        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8658  | 6        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8659  | 8        | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8660  | 10       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8661  | 12       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8662  | 14       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8663  | 1        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8664  | 3        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8665  | 5        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8666  | 7        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8667  | 9        | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8668  | 11       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8669  | 13       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8670  | 15       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8671  | 0        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8672  | 2        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8673  | 4        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8674  | 6        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8675  | 8        | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8676  | 10       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8677  | 12       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8678  | 14       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8679  | 1        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8680  | 3        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8681  | 5        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8682  | 7        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8683  | 9        | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8684  | 11       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8685  | 13       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8686  | 15       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8687  | 0        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8688  | 2        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8689  | 4        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8690  | 6        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8691  | 8        | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8692  | 10       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8693  | 12       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8694  | 14       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8695  | 1        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8696  | 3        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8697  | 5        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8698  | 7        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8699  | 9        | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8700  | 11       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8701  | 13       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8702  | 15       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8703  | 0        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8704  | 2        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8705  | 4        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8706  | 6        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8707  | 8        | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8708  | 10       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8709  | 12       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8710  | 14       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8711  | 1        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8712  | 3        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8713  | 5        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8714  | 7        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8715  | 9        | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8716  | 11       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8717  | 13       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8718  | 15       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8719  | 0        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8720  | 2        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8721  | 4        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8722  | 6        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8723  | 8        | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8724  | 10       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8725  | 12       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8726  | 14       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8727  | 1        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8728  | 3        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8729  | 5        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8730  | 7        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8731  | 9        | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8732  | 11       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8733  | 13       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8734  | 15       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1615  | 8527  | 0      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8528  | 2      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8529  | 4      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8530  | 6      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8531  | 8      | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8532  | 10     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8533  | 12     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8534  | 14     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8535  | 1      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8536  | 3      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8537  | 5      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8538  | 7      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8539  | 9      | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8540  | 11     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8541  | 13     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8542  | 15     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 1617  | 8543  | 0      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8544  | 2      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8545  | 4      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8546  | 6      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8547  | 8      | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8548  | 10     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8549  | 12     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8550  | 14     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8551  | 1      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8552  | 3      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8553  | 5      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8554  | 7      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8555  | 9      | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8556  | 11     | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8557  | 13     | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8558  | 15     | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 1619  | 8559  | 0      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8560  | 2      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8561  | 4      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8562  | 6      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8563  | 8      | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8564  | 10     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8565  | 12     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8566  | 14     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8567  | 1      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8568  | 3      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8569  | 5      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8570  | 7      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8571  | 9      | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8572  | 11     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8573  | 13     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8574  | 15     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 1621  | 8575  | 0      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8576  | 2      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8577  | 4      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8578  | 6      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8579  | 8      | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8580  | 10     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8581  | 12     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8582  | 14     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8583  | 1      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8584  | 3      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8585  | 5      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8586  | 7      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8587  | 9      | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8588  | 11     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8589  | 13     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8590  | 15     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-5           | 1623  | 8591  | 0      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8592  | 2      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8593  | 4      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8594  | 6      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8595  | 8      | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8596  | 10     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8597  | 12     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8598  | 14     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8599  | 1      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8600  | 3      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8601  | 5      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8602  | 7      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8603  | 9      | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8604  | 11     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8605  | 13     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8606  | 15     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-6           | 1625  | 8607  | 0      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8608  | 2      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8609  | 4      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8610  | 6      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8611  | 8      | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8612  | 10     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8613  | 12     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8614  | 14     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8615  | 1      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8616  | 3      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8617  | 5      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8618  | 7      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8619  | 9      | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8620  | 11     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8621  | 13     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8622  | 15     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-7           | 1627  | 8623  | 0      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8624  | 2      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8625  | 4      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8626  | 6      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8627  | 8      | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8628  | 10     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8629  | 12     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8630  | 14     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8631  | 1      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8632  | 3      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8633  | 5      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8634  | 7      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8635  | 9      | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8636  | 11     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8637  | 13     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8638  | 15     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-8           | 1629  | 8639  | 0      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8640  | 2      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8641  | 4      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8642  | 6      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8643  | 8      | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8644  | 10     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8645  | 12     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8646  | 14     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8647  | 1      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8648  | 3      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8649  | 5      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8650  | 7      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8651  | 9      | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8652  | 11     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8653  | 13     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8654  | 15     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-9           | 1631  | 8655  | 0      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8656  | 2      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8657  | 4      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8658  | 6      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8659  | 8      | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8660  | 10     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8661  | 12     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8662  | 14     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8663  | 1      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8664  | 3      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8665  | 5      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8666  | 7      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8667  | 9      | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8668  | 11     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8669  | 13     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8670  | 15     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-10          | 1633  | 8671  | 0      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8672  | 2      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8673  | 4      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8674  | 6      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8675  | 8      | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8676  | 10     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8677  | 12     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8678  | 14     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8679  | 1      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8680  | 3      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8681  | 5      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8682  | 7      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8683  | 9      | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8684  | 11     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8685  | 13     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8686  | 15     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-11          | 1635  | 8687  | 0      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8688  | 2      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8689  | 4      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8690  | 6      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8691  | 8      | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8692  | 10     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8693  | 12     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8694  | 14     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8695  | 1      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8696  | 3      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8697  | 5      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8698  | 7      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8699  | 9      | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8700  | 11     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8701  | 13     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8702  | 15     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-12          | 1637  | 8703  | 0      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8704  | 2      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8705  | 4      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8706  | 6      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8707  | 8      | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8708  | 10     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8709  | 12     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8710  | 14     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8711  | 1      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8712  | 3      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8713  | 5      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8714  | 7      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8715  | 9      | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8716  | 11     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8717  | 13     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8718  | 15     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-13          | 1639  | 8719  | 0      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8720  | 2      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8721  | 4      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8722  | 6      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8723  | 8      | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8724  | 10     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8725  | 12     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8726  | 14     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8727  | 1      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8728  | 3      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8729  | 5      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8730  | 7      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8731  | 9      | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8732  | 11     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8733  | 13     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8734  | 15     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_diff_stdout.txt b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_diff_stdout.txt
index bbf7aa3d08d656c514fbe5726aba8873a235f348..550e39da404d4e72870804a8350335c0e25ba05e 100644
--- a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_diff_stdout.txt
+++ b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_diff_stdout.txt
@@ -5,6 +5,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 1]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2:
     ["~", "gpu_count", 3, 4]
@@ -13,6 +14,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 1]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-3:
     ["~", "gpu_model", "RTX 2080 Ti", "GeForce RTX 2080 Ti"]
@@ -20,6 +22,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 1]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-4: same modifications as above
   clustera-5: same modifications as above
@@ -31,7 +34,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
   clustera-11: same modifications as above
   clustera-12: same modifications as above
   clustera-13: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
 Properties existing on the fakesite server but not managed/known by the generator: disk, diskpath.
 Hint: you can delete properties with 'oarproperty -d <property>' or add them to the ignore list in lib/lib-oar-properties.rb.
 # Error: Resource 9679 (host=clustera-2.nancy.grid5000.fr cpu=1618 core=8555 cpuset=9 gpu=59 gpudevice=2) has a mismatch for ressource GPU: OAR API gives 59, generator wants 60.
diff --git a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_print_stdout.txt b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_print_stdout.txt
index 2434d82fc33184773a8f15eab82e8fa671a5ceb5..dc976353e6004723549326cee2f6069caf87328b 100644
--- a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_print_stdout.txt
+++ b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9664'
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9665' AND type='default'" -p cpu=1616 -p core=8541 -p cpuset=13 -p gpu=56 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9666' AND type='default'" -p cpu=1616 -p core=8542 -p cpuset=15 -p gpu=56 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,7 +136,7 @@ oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9680'
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9681' AND type='default'" -p cpu=1618 -p core=8557 -p cpuset=13 -p gpu=60 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9682' AND type='default'" -p cpu=1618 -p core=8558 -p cpuset=15 -p gpu=60 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -160,7 +161,7 @@ oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9696'
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9697' AND type='default'" -p cpu=1620 -p core=8573 -p cpuset=13 -p gpu=64 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9698' AND type='default'" -p cpu=1620 -p core=8574 -p cpuset=15 -p gpu=64 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-3.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -185,7 +186,7 @@ oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9712'
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9713' AND type='default'" -p cpu=1622 -p core=8589 -p cpuset=13 -p gpu=68 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9714' AND type='default'" -p cpu=1622 -p core=8590 -p cpuset=15 -p gpu=68 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-4.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -210,7 +211,7 @@ oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9728'
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9729' AND type='default'" -p cpu=1624 -p core=8605 -p cpuset=13 -p gpu=72 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9730' AND type='default'" -p cpu=1624 -p core=8606 -p cpuset=15 -p gpu=72 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-5.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -235,7 +236,7 @@ oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9744'
 oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9745' AND type='default'" -p cpu=1626 -p core=8621 -p cpuset=13 -p gpu=76 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9746' AND type='default'" -p cpu=1626 -p core=8622 -p cpuset=15 -p gpu=76 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-6.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -260,7 +261,7 @@ oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9760'
 oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9761' AND type='default'" -p cpu=1628 -p core=8637 -p cpuset=13 -p gpu=80 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9762' AND type='default'" -p cpu=1628 -p core=8638 -p cpuset=15 -p gpu=80 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-7.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -285,7 +286,7 @@ oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9776'
 oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9777' AND type='default'" -p cpu=1630 -p core=8653 -p cpuset=13 -p gpu=84 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9778' AND type='default'" -p cpu=1630 -p core=8654 -p cpuset=15 -p gpu=84 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-8.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -310,7 +311,7 @@ oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9792'
 oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9793' AND type='default'" -p cpu=1632 -p core=8669 -p cpuset=13 -p gpu=88 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9794' AND type='default'" -p cpu=1632 -p core=8670 -p cpuset=15 -p gpu=88 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-9.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -335,7 +336,7 @@ oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9808
 oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9809' AND type='default'" -p cpu=1634 -p core=8685 -p cpuset=13 -p gpu=92 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9810' AND type='default'" -p cpu=1634 -p core=8686 -p cpuset=15 -p gpu=92 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-10.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -360,7 +361,7 @@ oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9824
 oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9825' AND type='default'" -p cpu=1636 -p core=8701 -p cpuset=13 -p gpu=96 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9826' AND type='default'" -p cpu=1636 -p core=8702 -p cpuset=15 -p gpu=96 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-11.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -385,7 +386,7 @@ oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9840
 oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9841' AND type='default'" -p cpu=1638 -p core=8717 -p cpuset=13 -p gpu=100 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9842' AND type='default'" -p cpu=1638 -p core=8718 -p cpuset=15 -p gpu=100 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-12.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -410,6 +411,6 @@ oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9856
 oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9857' AND type='default'" -p cpu=1640 -p core=8733 -p cpuset=13 -p gpu=104 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9858' AND type='default'" -p cpu=1640 -p core=8734 -p cpuset=15 -p gpu=104 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-13.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_table_stdout.txt b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_table_stdout.txt
index 5b7e29d6409a0aa8efaa18f3f0c648dbe3471c9f..d574e7889b458369dd5fa6aed8c7d1ce02491996 100644
--- a/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_table_stdout.txt
+++ b/spec/output/graffiti-gpu-removed-OAR-updated-gpu-re-added_table_stdout.txt
@@ -1,212 +1,224 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1615  | 8527  | 0        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8528  | 2        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8529  | 4        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8530  | 6        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8531  | 8        | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8532  | 10       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8533  | 12       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8534  | 14       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8535  | 1        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8536  | 3        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8537  | 5        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8538  | 7        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8539  | 9        | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8540  | 11       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8541  | 13       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8542  | 15       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8543  | 0        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8544  | 2        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8545  | 4        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8546  | 6        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8547  | 8        | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8548  | 10       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8549  | 12       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8550  | 14       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8551  | 1        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8552  | 3        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8553  | 5        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8554  | 7        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8555  | 9        | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8556  | 11       | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8557  | 13       | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8558  | 15       | 60   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8559  | 0        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8560  | 2        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8561  | 4        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8562  | 6        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8563  | 8        | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8564  | 10       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8565  | 12       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8566  | 14       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8567  | 1        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8568  | 3        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8569  | 5        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8570  | 7        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8571  | 9        | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8572  | 11       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8573  | 13       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8574  | 15       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8575  | 0        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8576  | 2        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8577  | 4        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8578  | 6        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8579  | 8        | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8580  | 10       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8581  | 12       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8582  | 14       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8583  | 1        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8584  | 3        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8585  | 5        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8586  | 7        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8587  | 9        | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8588  | 11       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8589  | 13       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8590  | 15       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8591  | 0        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8592  | 2        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8593  | 4        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8594  | 6        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8595  | 8        | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8596  | 10       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8597  | 12       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8598  | 14       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8599  | 1        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8600  | 3        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8601  | 5        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8602  | 7        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8603  | 9        | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8604  | 11       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8605  | 13       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8606  | 15       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8607  | 0        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8608  | 2        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8609  | 4        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8610  | 6        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8611  | 8        | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8612  | 10       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8613  | 12       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8614  | 14       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8615  | 1        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8616  | 3        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8617  | 5        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8618  | 7        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8619  | 9        | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8620  | 11       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8621  | 13       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8622  | 15       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8623  | 0        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8624  | 2        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8625  | 4        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8626  | 6        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8627  | 8        | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8628  | 10       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8629  | 12       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8630  | 14       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8631  | 1        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8632  | 3        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8633  | 5        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8634  | 7        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8635  | 9        | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8636  | 11       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8637  | 13       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8638  | 15       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8639  | 0        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8640  | 2        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8641  | 4        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8642  | 6        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8643  | 8        | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8644  | 10       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8645  | 12       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8646  | 14       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8647  | 1        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8648  | 3        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8649  | 5        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8650  | 7        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8651  | 9        | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8652  | 11       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8653  | 13       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8654  | 15       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8655  | 0        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8656  | 2        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8657  | 4        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8658  | 6        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8659  | 8        | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8660  | 10       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8661  | 12       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8662  | 14       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8663  | 1        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8664  | 3        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8665  | 5        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8666  | 7        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8667  | 9        | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8668  | 11       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8669  | 13       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8670  | 15       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8671  | 0        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8672  | 2        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8673  | 4        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8674  | 6        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8675  | 8        | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8676  | 10       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8677  | 12       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8678  | 14       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8679  | 1        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8680  | 3        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8681  | 5        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8682  | 7        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8683  | 9        | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8684  | 11       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8685  | 13       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8686  | 15       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8687  | 0        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8688  | 2        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8689  | 4        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8690  | 6        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8691  | 8        | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8692  | 10       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8693  | 12       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8694  | 14       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8695  | 1        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8696  | 3        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8697  | 5        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8698  | 7        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8699  | 9        | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8700  | 11       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8701  | 13       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8702  | 15       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8703  | 0        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8704  | 2        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8705  | 4        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8706  | 6        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8707  | 8        | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8708  | 10       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8709  | 12       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8710  | 14       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8711  | 1        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8712  | 3        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8713  | 5        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8714  | 7        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8715  | 9        | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8716  | 11       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8717  | 13       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8718  | 15       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8719  | 0        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8720  | 2        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8721  | 4        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8722  | 6        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8723  | 8        | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8724  | 10       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8725  | 12       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8726  | 14       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8727  | 1        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8728  | 3        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8729  | 5        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8730  | 7        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8731  | 9        | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8732  | 11       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8733  | 13       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8734  | 15       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1615  | 8527  | 0      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8528  | 2      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8529  | 4      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8530  | 6      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8531  | 8      | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8532  | 10     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8533  | 12     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8534  | 14     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8535  | 1      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8536  | 3      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8537  | 5      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8538  | 7      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8539  | 9      | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8540  | 11     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8541  | 13     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8542  | 15     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 1617  | 8543  | 0      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8544  | 2      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8545  | 4      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8546  | 6      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8547  | 8      | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8548  | 10     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8549  | 12     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8550  | 14     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8551  | 1      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8552  | 3      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8553  | 5      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8554  | 7      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8555  | 9      | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8556  | 11     | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8557  | 13     | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8558  | 15     | Intel Xeon Silver 4110    | 60   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 1619  | 8559  | 0      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8560  | 2      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8561  | 4      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8562  | 6      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8563  | 8      | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8564  | 10     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8565  | 12     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8566  | 14     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8567  | 1      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8568  | 3      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8569  | 5      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8570  | 7      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8571  | 9      | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8572  | 11     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8573  | 13     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8574  | 15     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 1621  | 8575  | 0      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8576  | 2      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8577  | 4      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8578  | 6      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8579  | 8      | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8580  | 10     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8581  | 12     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8582  | 14     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8583  | 1      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8584  | 3      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8585  | 5      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8586  | 7      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8587  | 9      | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8588  | 11     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8589  | 13     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8590  | 15     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-5           | 1623  | 8591  | 0      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8592  | 2      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8593  | 4      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8594  | 6      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8595  | 8      | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8596  | 10     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8597  | 12     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8598  | 14     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8599  | 1      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8600  | 3      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8601  | 5      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8602  | 7      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8603  | 9      | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8604  | 11     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8605  | 13     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8606  | 15     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-6           | 1625  | 8607  | 0      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8608  | 2      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8609  | 4      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8610  | 6      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8611  | 8      | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8612  | 10     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8613  | 12     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8614  | 14     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8615  | 1      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8616  | 3      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8617  | 5      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8618  | 7      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8619  | 9      | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8620  | 11     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8621  | 13     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8622  | 15     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-7           | 1627  | 8623  | 0      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8624  | 2      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8625  | 4      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8626  | 6      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8627  | 8      | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8628  | 10     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8629  | 12     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8630  | 14     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8631  | 1      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8632  | 3      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8633  | 5      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8634  | 7      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8635  | 9      | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8636  | 11     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8637  | 13     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8638  | 15     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-8           | 1629  | 8639  | 0      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8640  | 2      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8641  | 4      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8642  | 6      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8643  | 8      | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8644  | 10     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8645  | 12     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8646  | 14     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8647  | 1      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8648  | 3      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8649  | 5      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8650  | 7      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8651  | 9      | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8652  | 11     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8653  | 13     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8654  | 15     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-9           | 1631  | 8655  | 0      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8656  | 2      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8657  | 4      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8658  | 6      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8659  | 8      | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8660  | 10     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8661  | 12     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8662  | 14     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8663  | 1      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8664  | 3      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8665  | 5      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8666  | 7      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8667  | 9      | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8668  | 11     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8669  | 13     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8670  | 15     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-10          | 1633  | 8671  | 0      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8672  | 2      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8673  | 4      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8674  | 6      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8675  | 8      | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8676  | 10     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8677  | 12     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8678  | 14     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8679  | 1      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8680  | 3      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8681  | 5      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8682  | 7      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8683  | 9      | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8684  | 11     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8685  | 13     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8686  | 15     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-11          | 1635  | 8687  | 0      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8688  | 2      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8689  | 4      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8690  | 6      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8691  | 8      | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8692  | 10     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8693  | 12     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8694  | 14     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8695  | 1      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8696  | 3      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8697  | 5      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8698  | 7      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8699  | 9      | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8700  | 11     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8701  | 13     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8702  | 15     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-12          | 1637  | 8703  | 0      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8704  | 2      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8705  | 4      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8706  | 6      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8707  | 8      | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8708  | 10     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8709  | 12     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8710  | 14     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8711  | 1      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8712  | 3      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8713  | 5      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8714  | 7      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8715  | 9      | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8716  | 11     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8717  | 13     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8718  | 15     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-13          | 1639  | 8719  | 0      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8720  | 2      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8721  | 4      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8722  | 6      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8723  | 8      | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8724  | 10     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8725  | 12     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8726  | 14     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8727  | 1      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8728  | 3      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8729  | 5      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8730  | 7      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8731  | 9      | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8732  | 11     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8733  | 13     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8734  | 15     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/graffiti-gpu-removed-OAR-updated_diff_stdout.txt b/spec/output/graffiti-gpu-removed-OAR-updated_diff_stdout.txt
index 5fac025605b7c5dff163b7de3c4b34015c92a34b..9b74fa7637c013624a4ec7393bafea62593c8c8e 100644
--- a/spec/output/graffiti-gpu-removed-OAR-updated_diff_stdout.txt
+++ b/spec/output/graffiti-gpu-removed-OAR-updated_diff_stdout.txt
@@ -5,6 +5,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 1]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2: same modifications as above
   clustera-3: same modifications as above
@@ -18,6 +19,6 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
   clustera-11: same modifications as above
   clustera-12: same modifications as above
   clustera-13: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
 Properties existing on the fakesite server but not managed/known by the generator: disk, diskpath.
 Hint: you can delete properties with 'oarproperty -d <property>' or add them to the ignore list in lib/lib-oar-properties.rb.
diff --git a/spec/output/graffiti-gpu-removed-OAR-updated_print_stdout.txt b/spec/output/graffiti-gpu-removed-OAR-updated_print_stdout.txt
index 075c1049c2df971a2ed6330338df0a7e0b2ae556..4c7913c6ec2c9e8d57789c94c6e8736c6c600129 100644
--- a/spec/output/graffiti-gpu-removed-OAR-updated_print_stdout.txt
+++ b/spec/output/graffiti-gpu-removed-OAR-updated_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9664'
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9665' AND type='default'" -p cpu=1616 -p core=8541 -p cpuset=13 -p gpu=56 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='9666' AND type='default'" -p cpu=1616 -p core=8542 -p cpuset=15 -p gpu=56 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,7 +136,7 @@ oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9680'
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9681' AND type='default'" -p cpu=1618 -p core=8557 -p cpuset=13 -p gpu=59 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='9682' AND type='default'" -p cpu=1618 -p core=8558 -p cpuset=15 -p gpu=59 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-2.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=3 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=3 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -160,7 +161,7 @@ oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9696'
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9697' AND type='default'" -p cpu=1620 -p core=8573 -p cpuset=13 -p gpu=64 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='9698' AND type='default'" -p cpu=1620 -p core=8574 -p cpuset=15 -p gpu=64 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-3.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -185,7 +186,7 @@ oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9712'
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9713' AND type='default'" -p cpu=1622 -p core=8589 -p cpuset=13 -p gpu=68 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='9714' AND type='default'" -p cpu=1622 -p core=8590 -p cpuset=15 -p gpu=68 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-4.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -210,7 +211,7 @@ oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9728'
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9729' AND type='default'" -p cpu=1624 -p core=8605 -p cpuset=13 -p gpu=72 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='9730' AND type='default'" -p cpu=1624 -p core=8606 -p cpuset=15 -p gpu=72 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-5.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -235,7 +236,7 @@ oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9744'
 oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9745' AND type='default'" -p cpu=1626 -p core=8621 -p cpuset=13 -p gpu=76 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' AND resource_id='9746' AND type='default'" -p cpu=1626 -p core=8622 -p cpuset=15 -p gpu=76 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-6.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-6.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -260,7 +261,7 @@ oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9760'
 oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9761' AND type='default'" -p cpu=1628 -p core=8637 -p cpuset=13 -p gpu=80 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' AND resource_id='9762' AND type='default'" -p cpu=1628 -p core=8638 -p cpuset=15 -p gpu=80 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-7.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-7.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -285,7 +286,7 @@ oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9776'
 oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9777' AND type='default'" -p cpu=1630 -p core=8653 -p cpuset=13 -p gpu=84 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' AND resource_id='9778' AND type='default'" -p cpu=1630 -p core=8654 -p cpuset=15 -p gpu=84 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-8.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-8.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -310,7 +311,7 @@ oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9792'
 oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9793' AND type='default'" -p cpu=1632 -p core=8669 -p cpuset=13 -p gpu=88 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' AND resource_id='9794' AND type='default'" -p cpu=1632 -p core=8670 -p cpuset=15 -p gpu=88 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-9.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-9.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -335,7 +336,7 @@ oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9808
 oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9809' AND type='default'" -p cpu=1634 -p core=8685 -p cpuset=13 -p gpu=92 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' AND resource_id='9810' AND type='default'" -p cpu=1634 -p core=8686 -p cpuset=15 -p gpu=92 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-10.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-10.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -360,7 +361,7 @@ oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9824
 oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9825' AND type='default'" -p cpu=1636 -p core=8701 -p cpuset=13 -p gpu=96 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' AND resource_id='9826' AND type='default'" -p cpu=1636 -p core=8702 -p cpuset=15 -p gpu=96 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-11.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-11.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -385,7 +386,7 @@ oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9840
 oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9841' AND type='default'" -p cpu=1638 -p core=8717 -p cpuset=13 -p gpu=100 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' AND resource_id='9842' AND type='default'" -p cpu=1638 -p core=8718 -p cpuset=15 -p gpu=100 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-12.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-12.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -410,6 +411,6 @@ oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9856
 oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9857' AND type='default'" -p cpu=1640 -p core=8733 -p cpuset=13 -p gpu=104 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' AND resource_id='9858' AND type='default'" -p cpu=1640 -p core=8734 -p cpuset=15 -p gpu=104 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-13.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-13.nancy.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/graffiti-gpu-removed-OAR-updated_table_stdout.txt b/spec/output/graffiti-gpu-removed-OAR-updated_table_stdout.txt
index a4411a956dbb12385714f674c20ac5df9a39dbb3..b5906136c2f02ecb69d5a5cbdb45d24b6282f606 100644
--- a/spec/output/graffiti-gpu-removed-OAR-updated_table_stdout.txt
+++ b/spec/output/graffiti-gpu-removed-OAR-updated_table_stdout.txt
@@ -1,212 +1,224 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1615  | 8527  | 0        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8528  | 2        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8529  | 4        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8530  | 6        | 53   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8531  | 8        | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8532  | 10       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8533  | 12       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1615  | 8534  | 14       | 54   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8535  | 1        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8536  | 3        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8537  | 5        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8538  | 7        | 55   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8539  | 9        | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8540  | 11       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8541  | 13       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1616  | 8542  | 15       | 56   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8543  | 0        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8544  | 2        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8545  | 4        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8546  | 6        | 57   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8547  | 8        | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8548  | 10       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8549  | 12       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1617  | 8550  | 14       | 58   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8551  | 1        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8552  | 3        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8553  | 5        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8554  | 7        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8555  | 9        | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8556  | 11       | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8557  | 13       | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 1618  | 8558  | 15       | 59   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8559  | 0        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8560  | 2        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8561  | 4        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8562  | 6        | 61   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8563  | 8        | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8564  | 10       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8565  | 12       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1619  | 8566  | 14       | 62   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8567  | 1        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8568  | 3        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8569  | 5        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8570  | 7        | 63   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8571  | 9        | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8572  | 11       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8573  | 13       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 1620  | 8574  | 15       | 64   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8575  | 0        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8576  | 2        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8577  | 4        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8578  | 6        | 65   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8579  | 8        | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8580  | 10       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8581  | 12       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1621  | 8582  | 14       | 66   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8583  | 1        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8584  | 3        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8585  | 5        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8586  | 7        | 67   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8587  | 9        | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8588  | 11       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8589  | 13       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 1622  | 8590  | 15       | 68   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8591  | 0        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8592  | 2        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8593  | 4        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8594  | 6        | 69   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8595  | 8        | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8596  | 10       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8597  | 12       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1623  | 8598  | 14       | 70   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8599  | 1        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8600  | 3        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8601  | 5        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8602  | 7        | 71   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8603  | 9        | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8604  | 11       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8605  | 13       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 1624  | 8606  | 15       | 72   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8607  | 0        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8608  | 2        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8609  | 4        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8610  | 6        | 73   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8611  | 8        | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8612  | 10       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8613  | 12       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1625  | 8614  | 14       | 74   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8615  | 1        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8616  | 3        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8617  | 5        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8618  | 7        | 75   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8619  | 9        | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8620  | 11       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8621  | 13       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 1626  | 8622  | 15       | 76   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8623  | 0        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8624  | 2        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8625  | 4        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8626  | 6        | 77   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8627  | 8        | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8628  | 10       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8629  | 12       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1627  | 8630  | 14       | 78   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8631  | 1        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8632  | 3        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8633  | 5        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8634  | 7        | 79   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8635  | 9        | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8636  | 11       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8637  | 13       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 1628  | 8638  | 15       | 80   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8639  | 0        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8640  | 2        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8641  | 4        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8642  | 6        | 81   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8643  | 8        | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8644  | 10       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8645  | 12       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1629  | 8646  | 14       | 82   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8647  | 1        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8648  | 3        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8649  | 5        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8650  | 7        | 83   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8651  | 9        | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8652  | 11       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8653  | 13       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 1630  | 8654  | 15       | 84   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8655  | 0        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8656  | 2        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8657  | 4        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8658  | 6        | 85   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8659  | 8        | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8660  | 10       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8661  | 12       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1631  | 8662  | 14       | 86   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8663  | 1        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8664  | 3        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8665  | 5        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8666  | 7        | 87   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8667  | 9        | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8668  | 11       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8669  | 13       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 1632  | 8670  | 15       | 88   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8671  | 0        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8672  | 2        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8673  | 4        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8674  | 6        | 89   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8675  | 8        | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8676  | 10       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8677  | 12       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1633  | 8678  | 14       | 90   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8679  | 1        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8680  | 3        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8681  | 5        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8682  | 7        | 91   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8683  | 9        | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8684  | 11       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8685  | 13       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 1634  | 8686  | 15       | 92   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8687  | 0        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8688  | 2        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8689  | 4        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8690  | 6        | 93   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8691  | 8        | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8692  | 10       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8693  | 12       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1635  | 8694  | 14       | 94   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8695  | 1        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8696  | 3        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8697  | 5        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8698  | 7        | 95   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8699  | 9        | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8700  | 11       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8701  | 13       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 1636  | 8702  | 15       | 96   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8703  | 0        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8704  | 2        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8705  | 4        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8706  | 6        | 97   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8707  | 8        | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8708  | 10       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8709  | 12       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1637  | 8710  | 14       | 98   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8711  | 1        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8712  | 3        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8713  | 5        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8714  | 7        | 99   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8715  | 9        | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8716  | 11       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8717  | 13       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 1638  | 8718  | 15       | 100  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8719  | 0        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8720  | 2        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8721  | 4        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8722  | 6        | 101  | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8723  | 8        | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8724  | 10       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8725  | 12       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1639  | 8726  | 14       | 102  | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8727  | 1        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8728  | 3        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8729  | 5        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8730  | 7        | 103  | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8731  | 9        | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8732  | 11       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8733  | 13       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 1640  | 8734  | 15       | 104  | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1615  | 8527  | 0      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8528  | 2      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8529  | 4      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8530  | 6      | Intel Xeon Silver 4110    | 53   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8531  | 8      | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8532  | 10     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8533  | 12     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1615  | 8534  | 14     | Intel Xeon Silver 4110    | 54   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8535  | 1      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8536  | 3      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8537  | 5      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8538  | 7      | Intel Xeon Silver 4110    | 55   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8539  | 9      | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8540  | 11     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8541  | 13     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1616  | 8542  | 15     | Intel Xeon Silver 4110    | 56   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 1617  | 8543  | 0      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8544  | 2      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8545  | 4      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8546  | 6      | Intel Xeon Silver 4110    | 57   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8547  | 8      | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8548  | 10     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8549  | 12     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1617  | 8550  | 14     | Intel Xeon Silver 4110    | 58   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8551  | 1      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8552  | 3      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8553  | 5      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8554  | 7      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8555  | 9      | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8556  | 11     | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8557  | 13     | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 1618  | 8558  | 15     | Intel Xeon Silver 4110    | 59   | 2          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 1619  | 8559  | 0      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8560  | 2      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8561  | 4      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8562  | 6      | Intel Xeon Silver 4110    | 61   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8563  | 8      | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8564  | 10     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8565  | 12     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1619  | 8566  | 14     | Intel Xeon Silver 4110    | 62   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8567  | 1      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8568  | 3      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8569  | 5      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8570  | 7      | Intel Xeon Silver 4110    | 63   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8571  | 9      | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8572  | 11     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8573  | 13     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 1620  | 8574  | 15     | Intel Xeon Silver 4110    | 64   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 1621  | 8575  | 0      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8576  | 2      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8577  | 4      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8578  | 6      | Intel Xeon Silver 4110    | 65   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8579  | 8      | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8580  | 10     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8581  | 12     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1621  | 8582  | 14     | Intel Xeon Silver 4110    | 66   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8583  | 1      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8584  | 3      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8585  | 5      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8586  | 7      | Intel Xeon Silver 4110    | 67   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8587  | 9      | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8588  | 11     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8589  | 13     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 1622  | 8590  | 15     | Intel Xeon Silver 4110    | 68   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-5           | 1623  | 8591  | 0      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8592  | 2      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8593  | 4      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8594  | 6      | Intel Xeon Silver 4110    | 69   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8595  | 8      | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8596  | 10     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8597  | 12     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1623  | 8598  | 14     | Intel Xeon Silver 4110    | 70   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8599  | 1      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8600  | 3      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8601  | 5      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8602  | 7      | Intel Xeon Silver 4110    | 71   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8603  | 9      | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8604  | 11     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8605  | 13     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 1624  | 8606  | 15     | Intel Xeon Silver 4110    | 72   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-6           | 1625  | 8607  | 0      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8608  | 2      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8609  | 4      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8610  | 6      | Intel Xeon Silver 4110    | 73   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8611  | 8      | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8612  | 10     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8613  | 12     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1625  | 8614  | 14     | Intel Xeon Silver 4110    | 74   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8615  | 1      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8616  | 3      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8617  | 5      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8618  | 7      | Intel Xeon Silver 4110    | 75   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8619  | 9      | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8620  | 11     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8621  | 13     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 1626  | 8622  | 15     | Intel Xeon Silver 4110    | 76   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-7           | 1627  | 8623  | 0      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8624  | 2      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8625  | 4      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8626  | 6      | Intel Xeon Silver 4110    | 77   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8627  | 8      | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8628  | 10     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8629  | 12     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1627  | 8630  | 14     | Intel Xeon Silver 4110    | 78   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8631  | 1      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8632  | 3      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8633  | 5      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8634  | 7      | Intel Xeon Silver 4110    | 79   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8635  | 9      | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8636  | 11     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8637  | 13     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 1628  | 8638  | 15     | Intel Xeon Silver 4110    | 80   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-8           | 1629  | 8639  | 0      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8640  | 2      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8641  | 4      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8642  | 6      | Intel Xeon Silver 4110    | 81   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8643  | 8      | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8644  | 10     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8645  | 12     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1629  | 8646  | 14     | Intel Xeon Silver 4110    | 82   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8647  | 1      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8648  | 3      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8649  | 5      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8650  | 7      | Intel Xeon Silver 4110    | 83   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8651  | 9      | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8652  | 11     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8653  | 13     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 1630  | 8654  | 15     | Intel Xeon Silver 4110    | 84   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-9           | 1631  | 8655  | 0      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8656  | 2      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8657  | 4      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8658  | 6      | Intel Xeon Silver 4110    | 85   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8659  | 8      | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8660  | 10     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8661  | 12     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1631  | 8662  | 14     | Intel Xeon Silver 4110    | 86   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8663  | 1      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8664  | 3      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8665  | 5      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8666  | 7      | Intel Xeon Silver 4110    | 87   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8667  | 9      | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8668  | 11     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8669  | 13     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 1632  | 8670  | 15     | Intel Xeon Silver 4110    | 88   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-10          | 1633  | 8671  | 0      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8672  | 2      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8673  | 4      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8674  | 6      | Intel Xeon Silver 4110    | 89   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8675  | 8      | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8676  | 10     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8677  | 12     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1633  | 8678  | 14     | Intel Xeon Silver 4110    | 90   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8679  | 1      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8680  | 3      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8681  | 5      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8682  | 7      | Intel Xeon Silver 4110    | 91   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8683  | 9      | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8684  | 11     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8685  | 13     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 1634  | 8686  | 15     | Intel Xeon Silver 4110    | 92   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-11          | 1635  | 8687  | 0      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8688  | 2      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8689  | 4      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8690  | 6      | Intel Xeon Silver 4110    | 93   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8691  | 8      | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8692  | 10     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8693  | 12     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1635  | 8694  | 14     | Intel Xeon Silver 4110    | 94   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8695  | 1      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8696  | 3      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8697  | 5      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8698  | 7      | Intel Xeon Silver 4110    | 95   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8699  | 9      | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8700  | 11     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8701  | 13     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 1636  | 8702  | 15     | Intel Xeon Silver 4110    | 96   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-12          | 1637  | 8703  | 0      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8704  | 2      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8705  | 4      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8706  | 6      | Intel Xeon Silver 4110    | 97   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8707  | 8      | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8708  | 10     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8709  | 12     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1637  | 8710  | 14     | Intel Xeon Silver 4110    | 98   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8711  | 1      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8712  | 3      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8713  | 5      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8714  | 7      | Intel Xeon Silver 4110    | 99   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8715  | 9      | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8716  | 11     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8717  | 13     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 1638  | 8718  | 15     | Intel Xeon Silver 4110    | 100  | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-13          | 1639  | 8719  | 0      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8720  | 2      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8721  | 4      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8722  | 6      | Intel Xeon Silver 4110    | 101  | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8723  | 8      | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8724  | 10     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8725  | 12     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1639  | 8726  | 14     | Intel Xeon Silver 4110    | 102  | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8727  | 1      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8728  | 3      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8729  | 5      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8730  | 7      | Intel Xeon Silver 4110    | 103  | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8731  | 9      | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8732  | 11     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8733  | 13     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-13          | 1640  | 8734  | 15     | Intel Xeon Silver 4110    | 104  | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/graffiti_empty_diff_stdout.txt b/spec/output/graffiti_empty_diff_stdout.txt
index 6164c2449ea7bc6eb466ede29e23026922b57d03..bae2de14a4df9f171ab3b6411efa3c06da6fd697 100644
--- a/spec/output/graffiti_empty_diff_stdout.txt
+++ b/spec/output/graffiti_empty_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -100,6 +102,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -141,6 +144,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -182,6 +186,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -223,6 +228,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -264,6 +270,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -305,6 +312,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -346,6 +354,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -387,6 +396,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -428,6 +438,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -469,6 +480,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 11019]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -510,6 +522,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 22698]
     ["+", "gpu_model", "Quadro RTX 6000"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -532,4 +545,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/graffiti_empty_print_stdout.txt b/spec/output/graffiti_empty_print_stdout.txt
index 7de1bffec320e3a195d3d1ff2ac7c11fa278135d..2016e1b6bf56bb9a2e1fdc32052bc8f0419b9aa3 100644
--- a/spec/output/graffiti_empty_print_stdout.txt
+++ b/spec/output/graffiti_empty_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=15 -p cpuset=13 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,7 +136,7 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=31 -p cpuset=13 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -160,7 +161,7 @@ oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=47 -p cpuset=13 -p gpu=12 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=48 -p cpuset=15 -p gpu=12 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 BL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -185,7 +186,7 @@ oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=63 -p cpuset=13 -p gpu=16 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=64 -p cpuset=15 -p gpu=16 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 DL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -210,7 +211,7 @@ oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='clustera-5.fakesite.grid5000.fr' -p cpu=10 -p core=79 -p cpuset=13 -p gpu=20 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='clustera-5.fakesite.grid5000.fr' -p cpu=10 -p core=80 -p cpuset=15 -p gpu=20 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-5.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 CL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -235,7 +236,7 @@ oarnodesetting -a -h 'clustera-6.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-6.fakesite.grid5000.fr' -s Absent -p host='clustera-6.fakesite.grid5000.fr' -p cpu=12 -p core=95 -p cpuset=13 -p gpu=24 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-6.fakesite.grid5000.fr' -s Absent -p host='clustera-6.fakesite.grid5000.fr' -p cpu=12 -p core=96 -p cpuset=15 -p gpu=24 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-6.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 8K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -260,7 +261,7 @@ oarnodesetting -a -h 'clustera-7.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-7.fakesite.grid5000.fr' -s Absent -p host='clustera-7.fakesite.grid5000.fr' -p cpu=14 -p core=111 -p cpuset=13 -p gpu=28 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-7.fakesite.grid5000.fr' -s Absent -p host='clustera-7.fakesite.grid5000.fr' -p cpu=14 -p core=112 -p cpuset=15 -p gpu=28 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-7.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 BK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -285,7 +286,7 @@ oarnodesetting -a -h 'clustera-8.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-8.fakesite.grid5000.fr' -s Absent -p host='clustera-8.fakesite.grid5000.fr' -p cpu=16 -p core=127 -p cpuset=13 -p gpu=32 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-8.fakesite.grid5000.fr' -s Absent -p host='clustera-8.fakesite.grid5000.fr' -p cpu=16 -p core=128 -p cpuset=15 -p gpu=32 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-8.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 CK1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -310,7 +311,7 @@ oarnodesetting -a -h 'clustera-9.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-9.fakesite.grid5000.fr' -s Absent -p host='clustera-9.fakesite.grid5000.fr' -p cpu=18 -p core=143 -p cpuset=13 -p gpu=36 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-9.fakesite.grid5000.fr' -s Absent -p host='clustera-9.fakesite.grid5000.fr' -p cpu=18 -p core=144 -p cpuset=15 -p gpu=36 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-9.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-9.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-9.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.9' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 9K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -335,7 +336,7 @@ oarnodesetting -a -h 'clustera-10.fakesite.grid5000.fr' -s Absent -p host='clust
 oarnodesetting -a -h 'clustera-10.fakesite.grid5000.fr' -s Absent -p host='clustera-10.fakesite.grid5000.fr' -p cpu=20 -p core=159 -p cpuset=13 -p gpu=40 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-10.fakesite.grid5000.fr' -s Absent -p host='clustera-10.fakesite.grid5000.fr' -p cpu=20 -p core=160 -p cpuset=15 -p gpu=40 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-10.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-10.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-10.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.10' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 GL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -360,7 +361,7 @@ oarnodesetting -a -h 'clustera-11.fakesite.grid5000.fr' -s Absent -p host='clust
 oarnodesetting -a -h 'clustera-11.fakesite.grid5000.fr' -s Absent -p host='clustera-11.fakesite.grid5000.fr' -p cpu=22 -p core=175 -p cpuset=13 -p gpu=44 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-11.fakesite.grid5000.fr' -s Absent -p host='clustera-11.fakesite.grid5000.fr' -p cpu=22 -p core=176 -p cpuset=15 -p gpu=44 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-11.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-11.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-11.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.11' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 JL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -385,7 +386,7 @@ oarnodesetting -a -h 'clustera-12.fakesite.grid5000.fr' -s Absent -p host='clust
 oarnodesetting -a -h 'clustera-12.fakesite.grid5000.fr' -s Absent -p host='clustera-12.fakesite.grid5000.fr' -p cpu=24 -p core=191 -p cpuset=13 -p gpu=48 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-12.fakesite.grid5000.fr' -s Absent -p host='clustera-12.fakesite.grid5000.fr' -p cpu=24 -p core=192 -p cpuset=15 -p gpu=48 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-12.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-12.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-12.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.12' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 HL1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=11019 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -410,6 +411,6 @@ oarnodesetting -a -h 'clustera-13.fakesite.grid5000.fr' -s Absent -p host='clust
 oarnodesetting -a -h 'clustera-13.fakesite.grid5000.fr' -s Absent -p host='clustera-13.fakesite.grid5000.fr' -p cpu=26 -p core=207 -p cpuset=13 -p gpu=52 -p gpu_model='Quadro RTX 6000' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-13.fakesite.grid5000.fr' -s Absent -p host='clustera-13.fakesite.grid5000.fr' -p cpu=26 -p core=208 -p cpuset=15 -p gpu=52 -p gpu_model='Quadro RTX 6000' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-13.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-13.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='Quadro RTX 6000' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-13.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.13' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/HDD' -p chassis='Dell Inc. PowerEdge T640 7K1CBX2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='Quadro RTX 6000' -p gpu_count=4 -p gpu_mem=22698 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/graffiti_empty_table_stdout.txt b/spec/output/graffiti_empty_table_stdout.txt
index 24c3fae3e7aa1da7aadafee04386360937269f6c..fb1091e2594cfa10f5b9a8e131e4a4f575fe1f3e 100644
--- a/spec/output/graffiti_empty_table_stdout.txt
+++ b/spec/output/graffiti_empty_table_stdout.txt
@@ -1,212 +1,224 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 4        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 6        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 8        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 10       | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 12       | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 14       | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 1        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 3        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 5        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 7        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 9        | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 11       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 4        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 6        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 8        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 10       | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 12       | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 14       | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 1        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 3        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 5        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 7        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 9        | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 11       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 5     | 33    | 0        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 5     | 34    | 2        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 5     | 35    | 4        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 5     | 36    | 6        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 5     | 37    | 8        | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 5     | 38    | 10       | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 5     | 39    | 12       | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 5     | 40    | 14       | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 6     | 41    | 1        | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 6     | 42    | 3        | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 6     | 43    | 5        | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 6     | 44    | 7        | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 6     | 45    | 9        | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 6     | 46    | 11       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 6     | 47    | 13       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-3           | 6     | 48    | 15       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 7     | 49    | 0        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 7     | 50    | 2        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 7     | 51    | 4        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 7     | 52    | 6        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 7     | 53    | 8        | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 7     | 54    | 10       | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 7     | 55    | 12       | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 7     | 56    | 14       | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 8     | 57    | 1        | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 8     | 58    | 3        | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 8     | 59    | 5        | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 8     | 60    | 7        | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 8     | 61    | 9        | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 8     | 62    | 11       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 8     | 63    | 13       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-4           | 8     | 64    | 15       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 9     | 65    | 0        | 17   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 9     | 66    | 2        | 17   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 9     | 67    | 4        | 17   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 9     | 68    | 6        | 17   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 9     | 69    | 8        | 18   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 9     | 70    | 10       | 18   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 9     | 71    | 12       | 18   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 9     | 72    | 14       | 18   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 10    | 73    | 1        | 19   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 10    | 74    | 3        | 19   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 10    | 75    | 5        | 19   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 10    | 76    | 7        | 19   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 10    | 77    | 9        | 20   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 10    | 78    | 11       | 20   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 10    | 79    | 13       | 20   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-5           | 10    | 80    | 15       | 20   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 11    | 81    | 0        | 21   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 11    | 82    | 2        | 21   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 11    | 83    | 4        | 21   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 11    | 84    | 6        | 21   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 11    | 85    | 8        | 22   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 11    | 86    | 10       | 22   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 11    | 87    | 12       | 22   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 11    | 88    | 14       | 22   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 12    | 89    | 1        | 23   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 12    | 90    | 3        | 23   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 12    | 91    | 5        | 23   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 12    | 92    | 7        | 23   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 12    | 93    | 9        | 24   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 12    | 94    | 11       | 24   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 12    | 95    | 13       | 24   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-6           | 12    | 96    | 15       | 24   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 13    | 97    | 0        | 25   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 13    | 98    | 2        | 25   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 13    | 99    | 4        | 25   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 13    | 100   | 6        | 25   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 13    | 101   | 8        | 26   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 13    | 102   | 10       | 26   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 13    | 103   | 12       | 26   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 13    | 104   | 14       | 26   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 14    | 105   | 1        | 27   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 14    | 106   | 3        | 27   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 14    | 107   | 5        | 27   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 14    | 108   | 7        | 27   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 14    | 109   | 9        | 28   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 14    | 110   | 11       | 28   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 14    | 111   | 13       | 28   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-7           | 14    | 112   | 15       | 28   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 15    | 113   | 0        | 29   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 15    | 114   | 2        | 29   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 15    | 115   | 4        | 29   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 15    | 116   | 6        | 29   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 15    | 117   | 8        | 30   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 15    | 118   | 10       | 30   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 15    | 119   | 12       | 30   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 15    | 120   | 14       | 30   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 16    | 121   | 1        | 31   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 16    | 122   | 3        | 31   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 16    | 123   | 5        | 31   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 16    | 124   | 7        | 31   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 16    | 125   | 9        | 32   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 16    | 126   | 11       | 32   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 16    | 127   | 13       | 32   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-8           | 16    | 128   | 15       | 32   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 17    | 129   | 0        | 33   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 17    | 130   | 2        | 33   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 17    | 131   | 4        | 33   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 17    | 132   | 6        | 33   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 17    | 133   | 8        | 34   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 17    | 134   | 10       | 34   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 17    | 135   | 12       | 34   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 17    | 136   | 14       | 34   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 18    | 137   | 1        | 35   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 18    | 138   | 3        | 35   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 18    | 139   | 5        | 35   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 18    | 140   | 7        | 35   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 18    | 141   | 9        | 36   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 18    | 142   | 11       | 36   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 18    | 143   | 13       | 36   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-9           | 18    | 144   | 15       | 36   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 19    | 145   | 0        | 37   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 19    | 146   | 2        | 37   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 19    | 147   | 4        | 37   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 19    | 148   | 6        | 37   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 19    | 149   | 8        | 38   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 19    | 150   | 10       | 38   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 19    | 151   | 12       | 38   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 19    | 152   | 14       | 38   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 20    | 153   | 1        | 39   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 20    | 154   | 3        | 39   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 20    | 155   | 5        | 39   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 20    | 156   | 7        | 39   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 20    | 157   | 9        | 40   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 20    | 158   | 11       | 40   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 20    | 159   | 13       | 40   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-10          | 20    | 160   | 15       | 40   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 21    | 161   | 0        | 41   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 21    | 162   | 2        | 41   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 21    | 163   | 4        | 41   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 21    | 164   | 6        | 41   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 21    | 165   | 8        | 42   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 21    | 166   | 10       | 42   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 21    | 167   | 12       | 42   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 21    | 168   | 14       | 42   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 22    | 169   | 1        | 43   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 22    | 170   | 3        | 43   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 22    | 171   | 5        | 43   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 22    | 172   | 7        | 43   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 22    | 173   | 9        | 44   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 22    | 174   | 11       | 44   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 22    | 175   | 13       | 44   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-11          | 22    | 176   | 15       | 44   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 23    | 177   | 0        | 45   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 23    | 178   | 2        | 45   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 23    | 179   | 4        | 45   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 23    | 180   | 6        | 45   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 23    | 181   | 8        | 46   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 23    | 182   | 10       | 46   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 23    | 183   | 12       | 46   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 23    | 184   | 14       | 46   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 24    | 185   | 1        | 47   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 24    | 186   | 3        | 47   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 24    | 187   | 5        | 47   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 24    | 188   | 7        | 47   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 24    | 189   | 9        | 48   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 24    | 190   | 11       | 48   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 24    | 191   | 13       | 48   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-12          | 24    | 192   | 15       | 48   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-13          | 25    | 193   | 0        | 49   | 0                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 25    | 194   | 2        | 49   | 0                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 25    | 195   | 4        | 49   | 0                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 25    | 196   | 6        | 49   | 0                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 25    | 197   | 8        | 50   | 1                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 25    | 198   | 10       | 50   | 1                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 25    | 199   | 12       | 50   | 1                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 25    | 200   | 14       | 50   | 1                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 26    | 201   | 1        | 51   | 2                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 26    | 202   | 3        | 51   | 2                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 26    | 203   | 5        | 51   | 2                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 26    | 204   | 7        | 51   | 2                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 26    | 205   | 9        | 52   | 3                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 26    | 206   | 11       | 52   | 3                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 26    | 207   | 13       | 52   | 3                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-|  clustera | clustera-13          | 26    | 208   | 15       | 52   | 3                    | Intel Xeon Silver 4110         | Quadro RTX 6000               |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 4      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 6      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 8      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 10     | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 12     | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 14     | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 1      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 3      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 5      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 7      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 9      | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 11     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 4      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 6      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 8      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 10     | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 12     | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 14     | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 1      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 3      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 5      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 7      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 9      | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 11     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 5     | 33    | 0      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 5     | 34    | 2      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 5     | 35    | 4      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 5     | 36    | 6      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 5     | 37    | 8      | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 5     | 38    | 10     | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 5     | 39    | 12     | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 5     | 40    | 14     | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 6     | 41    | 1      | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 6     | 42    | 3      | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 6     | 43    | 5      | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 6     | 44    | 7      | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 6     | 45    | 9      | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 6     | 46    | 11     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 6     | 47    | 13     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-3           | 6     | 48    | 15     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 7     | 49    | 0      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 7     | 50    | 2      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 7     | 51    | 4      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 7     | 52    | 6      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 7     | 53    | 8      | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 7     | 54    | 10     | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 7     | 55    | 12     | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 7     | 56    | 14     | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 8     | 57    | 1      | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 8     | 58    | 3      | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 8     | 59    | 5      | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 8     | 60    | 7      | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 8     | 61    | 9      | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 8     | 62    | 11     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 8     | 63    | 13     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-4           | 8     | 64    | 15     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-5           | 9     | 65    | 0      | Intel Xeon Silver 4110    | 17   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 9     | 66    | 2      | Intel Xeon Silver 4110    | 17   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 9     | 67    | 4      | Intel Xeon Silver 4110    | 17   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 9     | 68    | 6      | Intel Xeon Silver 4110    | 17   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 9     | 69    | 8      | Intel Xeon Silver 4110    | 18   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 9     | 70    | 10     | Intel Xeon Silver 4110    | 18   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 9     | 71    | 12     | Intel Xeon Silver 4110    | 18   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 9     | 72    | 14     | Intel Xeon Silver 4110    | 18   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 10    | 73    | 1      | Intel Xeon Silver 4110    | 19   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 10    | 74    | 3      | Intel Xeon Silver 4110    | 19   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 10    | 75    | 5      | Intel Xeon Silver 4110    | 19   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 10    | 76    | 7      | Intel Xeon Silver 4110    | 19   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 10    | 77    | 9      | Intel Xeon Silver 4110    | 20   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 10    | 78    | 11     | Intel Xeon Silver 4110    | 20   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 10    | 79    | 13     | Intel Xeon Silver 4110    | 20   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-5           | 10    | 80    | 15     | Intel Xeon Silver 4110    | 20   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-6           | 11    | 81    | 0      | Intel Xeon Silver 4110    | 21   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 11    | 82    | 2      | Intel Xeon Silver 4110    | 21   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 11    | 83    | 4      | Intel Xeon Silver 4110    | 21   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 11    | 84    | 6      | Intel Xeon Silver 4110    | 21   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 11    | 85    | 8      | Intel Xeon Silver 4110    | 22   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 11    | 86    | 10     | Intel Xeon Silver 4110    | 22   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 11    | 87    | 12     | Intel Xeon Silver 4110    | 22   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 11    | 88    | 14     | Intel Xeon Silver 4110    | 22   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 12    | 89    | 1      | Intel Xeon Silver 4110    | 23   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 12    | 90    | 3      | Intel Xeon Silver 4110    | 23   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 12    | 91    | 5      | Intel Xeon Silver 4110    | 23   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 12    | 92    | 7      | Intel Xeon Silver 4110    | 23   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 12    | 93    | 9      | Intel Xeon Silver 4110    | 24   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 12    | 94    | 11     | Intel Xeon Silver 4110    | 24   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 12    | 95    | 13     | Intel Xeon Silver 4110    | 24   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-6           | 12    | 96    | 15     | Intel Xeon Silver 4110    | 24   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-7           | 13    | 97    | 0      | Intel Xeon Silver 4110    | 25   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 13    | 98    | 2      | Intel Xeon Silver 4110    | 25   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 13    | 99    | 4      | Intel Xeon Silver 4110    | 25   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 13    | 100   | 6      | Intel Xeon Silver 4110    | 25   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 13    | 101   | 8      | Intel Xeon Silver 4110    | 26   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 13    | 102   | 10     | Intel Xeon Silver 4110    | 26   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 13    | 103   | 12     | Intel Xeon Silver 4110    | 26   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 13    | 104   | 14     | Intel Xeon Silver 4110    | 26   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 14    | 105   | 1      | Intel Xeon Silver 4110    | 27   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 14    | 106   | 3      | Intel Xeon Silver 4110    | 27   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 14    | 107   | 5      | Intel Xeon Silver 4110    | 27   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 14    | 108   | 7      | Intel Xeon Silver 4110    | 27   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 14    | 109   | 9      | Intel Xeon Silver 4110    | 28   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 14    | 110   | 11     | Intel Xeon Silver 4110    | 28   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 14    | 111   | 13     | Intel Xeon Silver 4110    | 28   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-7           | 14    | 112   | 15     | Intel Xeon Silver 4110    | 28   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-8           | 15    | 113   | 0      | Intel Xeon Silver 4110    | 29   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 15    | 114   | 2      | Intel Xeon Silver 4110    | 29   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 15    | 115   | 4      | Intel Xeon Silver 4110    | 29   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 15    | 116   | 6      | Intel Xeon Silver 4110    | 29   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 15    | 117   | 8      | Intel Xeon Silver 4110    | 30   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 15    | 118   | 10     | Intel Xeon Silver 4110    | 30   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 15    | 119   | 12     | Intel Xeon Silver 4110    | 30   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 15    | 120   | 14     | Intel Xeon Silver 4110    | 30   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 16    | 121   | 1      | Intel Xeon Silver 4110    | 31   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 16    | 122   | 3      | Intel Xeon Silver 4110    | 31   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 16    | 123   | 5      | Intel Xeon Silver 4110    | 31   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 16    | 124   | 7      | Intel Xeon Silver 4110    | 31   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 16    | 125   | 9      | Intel Xeon Silver 4110    | 32   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 16    | 126   | 11     | Intel Xeon Silver 4110    | 32   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 16    | 127   | 13     | Intel Xeon Silver 4110    | 32   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-8           | 16    | 128   | 15     | Intel Xeon Silver 4110    | 32   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-9           | 17    | 129   | 0      | Intel Xeon Silver 4110    | 33   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 17    | 130   | 2      | Intel Xeon Silver 4110    | 33   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 17    | 131   | 4      | Intel Xeon Silver 4110    | 33   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 17    | 132   | 6      | Intel Xeon Silver 4110    | 33   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 17    | 133   | 8      | Intel Xeon Silver 4110    | 34   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 17    | 134   | 10     | Intel Xeon Silver 4110    | 34   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 17    | 135   | 12     | Intel Xeon Silver 4110    | 34   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 17    | 136   | 14     | Intel Xeon Silver 4110    | 34   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 18    | 137   | 1      | Intel Xeon Silver 4110    | 35   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 18    | 138   | 3      | Intel Xeon Silver 4110    | 35   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 18    | 139   | 5      | Intel Xeon Silver 4110    | 35   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 18    | 140   | 7      | Intel Xeon Silver 4110    | 35   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 18    | 141   | 9      | Intel Xeon Silver 4110    | 36   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 18    | 142   | 11     | Intel Xeon Silver 4110    | 36   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 18    | 143   | 13     | Intel Xeon Silver 4110    | 36   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-9           | 18    | 144   | 15     | Intel Xeon Silver 4110    | 36   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-10          | 19    | 145   | 0      | Intel Xeon Silver 4110    | 37   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 19    | 146   | 2      | Intel Xeon Silver 4110    | 37   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 19    | 147   | 4      | Intel Xeon Silver 4110    | 37   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 19    | 148   | 6      | Intel Xeon Silver 4110    | 37   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 19    | 149   | 8      | Intel Xeon Silver 4110    | 38   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 19    | 150   | 10     | Intel Xeon Silver 4110    | 38   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 19    | 151   | 12     | Intel Xeon Silver 4110    | 38   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 19    | 152   | 14     | Intel Xeon Silver 4110    | 38   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 20    | 153   | 1      | Intel Xeon Silver 4110    | 39   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 20    | 154   | 3      | Intel Xeon Silver 4110    | 39   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 20    | 155   | 5      | Intel Xeon Silver 4110    | 39   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 20    | 156   | 7      | Intel Xeon Silver 4110    | 39   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 20    | 157   | 9      | Intel Xeon Silver 4110    | 40   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 20    | 158   | 11     | Intel Xeon Silver 4110    | 40   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 20    | 159   | 13     | Intel Xeon Silver 4110    | 40   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-10          | 20    | 160   | 15     | Intel Xeon Silver 4110    | 40   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-11          | 21    | 161   | 0      | Intel Xeon Silver 4110    | 41   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 21    | 162   | 2      | Intel Xeon Silver 4110    | 41   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 21    | 163   | 4      | Intel Xeon Silver 4110    | 41   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 21    | 164   | 6      | Intel Xeon Silver 4110    | 41   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 21    | 165   | 8      | Intel Xeon Silver 4110    | 42   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 21    | 166   | 10     | Intel Xeon Silver 4110    | 42   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 21    | 167   | 12     | Intel Xeon Silver 4110    | 42   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 21    | 168   | 14     | Intel Xeon Silver 4110    | 42   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 22    | 169   | 1      | Intel Xeon Silver 4110    | 43   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 22    | 170   | 3      | Intel Xeon Silver 4110    | 43   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 22    | 171   | 5      | Intel Xeon Silver 4110    | 43   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 22    | 172   | 7      | Intel Xeon Silver 4110    | 43   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 22    | 173   | 9      | Intel Xeon Silver 4110    | 44   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 22    | 174   | 11     | Intel Xeon Silver 4110    | 44   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 22    | 175   | 13     | Intel Xeon Silver 4110    | 44   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-11          | 22    | 176   | 15     | Intel Xeon Silver 4110    | 44   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-12          | 23    | 177   | 0      | Intel Xeon Silver 4110    | 45   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 23    | 178   | 2      | Intel Xeon Silver 4110    | 45   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 23    | 179   | 4      | Intel Xeon Silver 4110    | 45   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 23    | 180   | 6      | Intel Xeon Silver 4110    | 45   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 23    | 181   | 8      | Intel Xeon Silver 4110    | 46   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 23    | 182   | 10     | Intel Xeon Silver 4110    | 46   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 23    | 183   | 12     | Intel Xeon Silver 4110    | 46   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 23    | 184   | 14     | Intel Xeon Silver 4110    | 46   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 24    | 185   | 1      | Intel Xeon Silver 4110    | 47   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 24    | 186   | 3      | Intel Xeon Silver 4110    | 47   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 24    | 187   | 5      | Intel Xeon Silver 4110    | 47   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 24    | 188   | 7      | Intel Xeon Silver 4110    | 47   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 24    | 189   | 9      | Intel Xeon Silver 4110    | 48   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 24    | 190   | 11     | Intel Xeon Silver 4110    | 48   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 24    | 191   | 13     | Intel Xeon Silver 4110    | 48   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-12          | 24    | 192   | 15     | Intel Xeon Silver 4110    | 48   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-13          | 25    | 193   | 0      | Intel Xeon Silver 4110    | 49   | 0          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 25    | 194   | 2      | Intel Xeon Silver 4110    | 49   | 0          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 25    | 195   | 4      | Intel Xeon Silver 4110    | 49   | 0          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 25    | 196   | 6      | Intel Xeon Silver 4110    | 49   | 0          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 25    | 197   | 8      | Intel Xeon Silver 4110    | 50   | 1          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 25    | 198   | 10     | Intel Xeon Silver 4110    | 50   | 1          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 25    | 199   | 12     | Intel Xeon Silver 4110    | 50   | 1          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 25    | 200   | 14     | Intel Xeon Silver 4110    | 50   | 1          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 26    | 201   | 1      | Intel Xeon Silver 4110    | 51   | 2          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 26    | 202   | 3      | Intel Xeon Silver 4110    | 51   | 2          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 26    | 203   | 5      | Intel Xeon Silver 4110    | 51   | 2          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 26    | 204   | 7      | Intel Xeon Silver 4110    | 51   | 2          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 26    | 205   | 9      | Intel Xeon Silver 4110    | 52   | 3          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 26    | 206   | 11     | Intel Xeon Silver 4110    | 52   | 3          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 26    | 207   | 13     | Intel Xeon Silver 4110    | 52   | 3          | Quadro RTX 6000                |
+| clustera    | clustera-13          | 26    | 208   | 15     | Intel Xeon Silver 4110    | 52   | 3          | Quadro RTX 6000                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/graphite_empty_diff_stdout.txt b/spec/output/graphite_empty_diff_stdout.txt
index 15821ec3de37089f8c01194d8f1bfe918b1948cb..04db97226748daaaa0c4b15c96e6c33e02dee7c1 100644
--- a/spec/output/graphite_empty_diff_stdout.txt
+++ b/spec/output/graphite_empty_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -100,6 +102,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -141,6 +144,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -163,4 +167,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/graphite_empty_print_stdout.txt b/spec/output/graphite_empty_print_stdout.txt
index 054f55743fa306fd620bad6e898951f91fd04559..d0537da9f33a92a9fcbd2226c7972ea7e98e2fc4 100644
--- a/spec/output/graphite_empty_print_stdout.txt
+++ b/spec/output/graphite_empty_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=15 -p cpuset=13
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=16 -p cpuset=15
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.68.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R720' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2650' -p cpufreq='2.0' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R720 27Q7NZ1' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=16384 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='YES' -p wattmeter='NO' -p cluster_priority=201312 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.68.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R720' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2650' -p cpufreq='2.0' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R720 27Q7NZ1' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=16384 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='YES' -p wattmeter='NO' -p cluster_priority=201312 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,7 +136,7 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=31 -p cpuset=13
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=32 -p cpuset=15
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.68.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R720' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2650' -p cpufreq='2.0' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R720 B6Q7NZ1' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=16384 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='YES' -p wattmeter='NO' -p cluster_priority=201312 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.68.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R720' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2650' -p cpufreq='2.0' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R720 B6Q7NZ1' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=16384 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='YES' -p wattmeter='NO' -p cluster_priority=201312 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -160,7 +161,7 @@ oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=47 -p cpuset=13
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=48 -p cpuset=15
 echo; echo 'Setting properties for clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.68.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R720' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2650' -p cpufreq='2.0' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R720 G5Q7NZ1' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=16384 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='YES' -p wattmeter='NO' -p cluster_priority=201312 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.68.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R720' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2650' -p cpufreq='2.0' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R720 G5Q7NZ1' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=16384 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='YES' -p wattmeter='NO' -p cluster_priority=201312 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -185,6 +186,6 @@ oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=63 -p cpuset=13
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=64 -p cpuset=15
 echo; echo 'Setting properties for clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.68.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R720' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2650' -p cpufreq='2.0' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R720 66Q7NZ1' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=16384 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='YES' -p wattmeter='NO' -p cluster_priority=201312 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.68.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R720' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2650' -p cpufreq='2.0' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R720 66Q7NZ1' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=16384 -p memcpu=131072 -p memnode=262144 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='YES' -p wattmeter='NO' -p cluster_priority=201312 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/graphite_empty_table_stdout.txt b/spec/output/graphite_empty_table_stdout.txt
index 7320ff431062fc97ee4b6caa5541af1a300c2fa7..c7a8717e310ad06cc405805ced81384512ab2b10 100644
--- a/spec/output/graphite_empty_table_stdout.txt
+++ b/spec/output/graphite_empty_table_stdout.txt
@@ -1,68 +1,71 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 1     | 2     | 2        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 1     | 3     | 4        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 1     | 4     | 6        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 1     | 5     | 8        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 1     | 6     | 10       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 1     | 7     | 12       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 1     | 8     | 14       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 2     | 9     | 1        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 2     | 10    | 3        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 2     | 11    | 5        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 2     | 12    | 7        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 2     | 13    | 9        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 2     | 14    | 11       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 2     | 15    | 13       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-1           | 2     | 16    | 15       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 3     | 17    | 0        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 3     | 18    | 2        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 3     | 19    | 4        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 3     | 20    | 6        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 3     | 21    | 8        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 3     | 22    | 10       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 3     | 23    | 12       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 3     | 24    | 14       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 4     | 25    | 1        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 4     | 26    | 3        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 4     | 27    | 5        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 4     | 28    | 7        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 4     | 29    | 9        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 4     | 30    | 11       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 4     | 31    | 13       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-2           | 4     | 32    | 15       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 5     | 33    | 0        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 5     | 34    | 2        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 5     | 35    | 4        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 5     | 36    | 6        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 5     | 37    | 8        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 5     | 38    | 10       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 5     | 39    | 12       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 5     | 40    | 14       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 6     | 41    | 1        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 6     | 42    | 3        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 6     | 43    | 5        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 6     | 44    | 7        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 6     | 45    | 9        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 6     | 46    | 11       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 6     | 47    | 13       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-3           | 6     | 48    | 15       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 7     | 49    | 0        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 7     | 50    | 2        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 7     | 51    | 4        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 7     | 52    | 6        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 7     | 53    | 8        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 7     | 54    | 10       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 7     | 55    | 12       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 7     | 56    | 14       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 8     | 57    | 1        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 8     | 58    | 3        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 8     | 59    | 5        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 8     | 60    | 7        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 8     | 61    | 9        |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 8     | 62    | 11       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 8     | 63    | 13       |      |                      | Intel Xeon E5-2650             |                               |
-|  clustera | clustera-4           | 8     | 64    | 15       |      |                      | Intel Xeon E5-2650             |                               |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 1     | 2     | 2      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 1     | 3     | 4      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 1     | 4     | 6      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 1     | 5     | 8      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 1     | 6     | 10     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 1     | 7     | 12     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 1     | 8     | 14     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 2     | 9     | 1      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 2     | 10    | 3      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 2     | 11    | 5      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 2     | 12    | 7      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 2     | 13    | 9      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 2     | 14    | 11     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 2     | 15    | 13     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon E5-2650        |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 3     | 18    | 2      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 3     | 19    | 4      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 3     | 20    | 6      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 3     | 21    | 8      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 3     | 22    | 10     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 3     | 23    | 12     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 3     | 24    | 14     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 4     | 25    | 1      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 4     | 26    | 3      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 4     | 27    | 5      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 4     | 28    | 7      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 4     | 29    | 9      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 4     | 30    | 11     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 4     | 31    | 13     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon E5-2650        |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 5     | 33    | 0      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 5     | 34    | 2      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 5     | 35    | 4      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 5     | 36    | 6      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 5     | 37    | 8      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 5     | 38    | 10     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 5     | 39    | 12     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 5     | 40    | 14     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 6     | 41    | 1      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 6     | 42    | 3      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 6     | 43    | 5      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 6     | 44    | 7      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 6     | 45    | 9      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 6     | 46    | 11     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 6     | 47    | 13     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-3           | 6     | 48    | 15     | Intel Xeon E5-2650        |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 7     | 49    | 0      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 7     | 50    | 2      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 7     | 51    | 4      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 7     | 52    | 6      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 7     | 53    | 8      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 7     | 54    | 10     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 7     | 55    | 12     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 7     | 56    | 14     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 8     | 57    | 1      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 8     | 58    | 3      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 8     | 59    | 5      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 8     | 60    | 7      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 8     | 61    | 9      | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 8     | 62    | 11     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 8     | 63    | 13     | Intel Xeon E5-2650        |      |            |                                |
+| clustera    | clustera-4           | 8     | 64    | 15     | Intel Xeon E5-2650        |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/grimoire_empty_diff_stdout.txt b/spec/output/grimoire_empty_diff_stdout.txt
index 8925b5b3ae5110221165e3f28a4f31796f499c9b..8ba928c9632228b5a7cfe5362d8d4c8332a3ba4e 100644
--- a/spec/output/grimoire_empty_diff_stdout.txt
+++ b/spec/output/grimoire_empty_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -100,6 +102,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -141,6 +144,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -182,6 +186,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -223,6 +228,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -264,6 +270,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -305,6 +312,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "FDR"]
     ["+", "ib_count", 1]
@@ -350,6 +358,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-1.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -397,6 +406,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-1.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -444,6 +454,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-1.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -491,6 +502,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-1.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -538,6 +550,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-1.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -585,6 +598,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-2.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -632,6 +646,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-2.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -679,6 +694,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-2.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -726,6 +742,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-2.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -773,6 +790,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-2.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -820,6 +838,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-3.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -867,6 +886,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-3.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -914,6 +934,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-3.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -961,6 +982,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-3.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1008,6 +1030,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-3.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1055,6 +1078,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-4.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1102,6 +1126,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-4.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1149,6 +1174,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-4.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1196,6 +1222,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-4.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1243,6 +1270,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-4.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1290,6 +1318,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-5.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1337,6 +1366,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-5.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1384,6 +1414,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-5.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1431,6 +1462,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-5.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1478,6 +1510,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-5.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1525,6 +1558,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-6.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1572,6 +1606,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-6.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1619,6 +1654,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-6.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1666,6 +1702,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-6.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1713,6 +1750,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-6.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1760,6 +1798,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-7.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1807,6 +1846,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-7.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1854,6 +1894,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-7.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1901,6 +1942,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-7.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1948,6 +1990,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-7.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -1995,6 +2038,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-8.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -2042,6 +2086,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-8.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -2089,6 +2134,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-8.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -2136,6 +2182,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-8.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -2183,6 +2230,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-8.fakesite.grid5000.fr"]
     ["+", "ib", "FDR"]
@@ -2207,4 +2255,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "YES"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/grimoire_empty_print_stdout.txt b/spec/output/grimoire_empty_print_stdout.txt
index f721b798b1ea01ca64a3ccde668bfdbd507bf7ff..f3982bc272685fb04848391991060f8e8cb77d29 100644
--- a/spec/output/grimoire_empty_print_stdout.txt
+++ b/spec/output/grimoire_empty_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -112,7 +113,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=15 -p cpuset=13
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=16 -p cpuset=15
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-1 on host clustera-1.fakesite.grid5000.fr:'
@@ -120,7 +121,7 @@ disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk1.clustera-1' && echo '=> disk
 disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk1.clustera-1' || oarnodesetting -a -h '' -p host='clustera-1.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-1'
 
 echo; echo 'Setting properties for disk disk1.clustera-1 on host clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-1 on host clustera-1.fakesite.grid5000.fr:'
@@ -128,7 +129,7 @@ disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk2.clustera-1' && echo '=> disk
 disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk2.clustera-1' || oarnodesetting -a -h '' -p host='clustera-1.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-1'
 
 echo; echo 'Setting properties for disk disk2.clustera-1 on host clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-1 on host clustera-1.fakesite.grid5000.fr:'
@@ -136,7 +137,7 @@ disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk3.clustera-1' && echo '=> disk
 disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk3.clustera-1' || oarnodesetting -a -h '' -p host='clustera-1.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-1'
 
 echo; echo 'Setting properties for disk disk3.clustera-1 on host clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk4.clustera-1 on host clustera-1.fakesite.grid5000.fr:'
@@ -144,7 +145,7 @@ disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk4.clustera-1' && echo '=> disk
 disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk4.clustera-1' || oarnodesetting -a -h '' -p host='clustera-1.fakesite.grid5000.fr' -p type='disk' -p disk='disk4.clustera-1'
 
 echo; echo 'Setting properties for disk disk4.clustera-1 on host clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk5.clustera-1 on host clustera-1.fakesite.grid5000.fr:'
@@ -152,7 +153,7 @@ disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk5.clustera-1' && echo '=> disk
 disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk5.clustera-1' || oarnodesetting -a -h '' -p host='clustera-1.fakesite.grid5000.fr' -p type='disk' -p disk='disk5.clustera-1'
 
 echo; echo 'Setting properties for disk disk5.clustera-1 on host clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-1'" -p ip='172.16.71.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z13J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -177,7 +178,7 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=31 -p cpuset=13
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=32 -p cpuset=15
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-2 on host clustera-2.fakesite.grid5000.fr:'
@@ -185,7 +186,7 @@ disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk1.clustera-2' && echo '=> disk
 disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk1.clustera-2' || oarnodesetting -a -h '' -p host='clustera-2.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-2'
 
 echo; echo 'Setting properties for disk disk1.clustera-2 on host clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-2 on host clustera-2.fakesite.grid5000.fr:'
@@ -193,7 +194,7 @@ disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk2.clustera-2' && echo '=> disk
 disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk2.clustera-2' || oarnodesetting -a -h '' -p host='clustera-2.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-2'
 
 echo; echo 'Setting properties for disk disk2.clustera-2 on host clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-2 on host clustera-2.fakesite.grid5000.fr:'
@@ -201,7 +202,7 @@ disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk3.clustera-2' && echo '=> disk
 disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk3.clustera-2' || oarnodesetting -a -h '' -p host='clustera-2.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-2'
 
 echo; echo 'Setting properties for disk disk3.clustera-2 on host clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk4.clustera-2 on host clustera-2.fakesite.grid5000.fr:'
@@ -209,7 +210,7 @@ disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk4.clustera-2' && echo '=> disk
 disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk4.clustera-2' || oarnodesetting -a -h '' -p host='clustera-2.fakesite.grid5000.fr' -p type='disk' -p disk='disk4.clustera-2'
 
 echo; echo 'Setting properties for disk disk4.clustera-2 on host clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk5.clustera-2 on host clustera-2.fakesite.grid5000.fr:'
@@ -217,7 +218,7 @@ disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk5.clustera-2' && echo '=> disk
 disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk5.clustera-2' || oarnodesetting -a -h '' -p host='clustera-2.fakesite.grid5000.fr' -p type='disk' -p disk='disk5.clustera-2'
 
 echo; echo 'Setting properties for disk disk5.clustera-2 on host clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-2'" -p ip='172.16.71.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3Z0ZH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -242,7 +243,7 @@ oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=47 -p cpuset=13
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=48 -p cpuset=15
 echo; echo 'Setting properties for clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-3 on host clustera-3.fakesite.grid5000.fr:'
@@ -250,7 +251,7 @@ disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk1.clustera-3' && echo '=> disk
 disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk1.clustera-3' || oarnodesetting -a -h '' -p host='clustera-3.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-3'
 
 echo; echo 'Setting properties for disk disk1.clustera-3 on host clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-3 on host clustera-3.fakesite.grid5000.fr:'
@@ -258,7 +259,7 @@ disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk2.clustera-3' && echo '=> disk
 disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk2.clustera-3' || oarnodesetting -a -h '' -p host='clustera-3.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-3'
 
 echo; echo 'Setting properties for disk disk2.clustera-3 on host clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-3 on host clustera-3.fakesite.grid5000.fr:'
@@ -266,7 +267,7 @@ disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk3.clustera-3' && echo '=> disk
 disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk3.clustera-3' || oarnodesetting -a -h '' -p host='clustera-3.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-3'
 
 echo; echo 'Setting properties for disk disk3.clustera-3 on host clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk4.clustera-3 on host clustera-3.fakesite.grid5000.fr:'
@@ -274,7 +275,7 @@ disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk4.clustera-3' && echo '=> disk
 disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk4.clustera-3' || oarnodesetting -a -h '' -p host='clustera-3.fakesite.grid5000.fr' -p type='disk' -p disk='disk4.clustera-3'
 
 echo; echo 'Setting properties for disk disk4.clustera-3 on host clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk5.clustera-3 on host clustera-3.fakesite.grid5000.fr:'
@@ -282,7 +283,7 @@ disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk5.clustera-3' && echo '=> disk
 disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk5.clustera-3' || oarnodesetting -a -h '' -p host='clustera-3.fakesite.grid5000.fr' -p type='disk' -p disk='disk5.clustera-3'
 
 echo; echo 'Setting properties for disk disk5.clustera-3 on host clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-3'" -p ip='172.16.71.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3YZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -307,7 +308,7 @@ oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=63 -p cpuset=13
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=64 -p cpuset=15
 echo; echo 'Setting properties for clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-4 on host clustera-4.fakesite.grid5000.fr:'
@@ -315,7 +316,7 @@ disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk1.clustera-4' && echo '=> disk
 disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk1.clustera-4' || oarnodesetting -a -h '' -p host='clustera-4.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-4'
 
 echo; echo 'Setting properties for disk disk1.clustera-4 on host clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-4 on host clustera-4.fakesite.grid5000.fr:'
@@ -323,7 +324,7 @@ disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk2.clustera-4' && echo '=> disk
 disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk2.clustera-4' || oarnodesetting -a -h '' -p host='clustera-4.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-4'
 
 echo; echo 'Setting properties for disk disk2.clustera-4 on host clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-4 on host clustera-4.fakesite.grid5000.fr:'
@@ -331,7 +332,7 @@ disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk3.clustera-4' && echo '=> disk
 disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk3.clustera-4' || oarnodesetting -a -h '' -p host='clustera-4.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-4'
 
 echo; echo 'Setting properties for disk disk3.clustera-4 on host clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk4.clustera-4 on host clustera-4.fakesite.grid5000.fr:'
@@ -339,7 +340,7 @@ disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk4.clustera-4' && echo '=> disk
 disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk4.clustera-4' || oarnodesetting -a -h '' -p host='clustera-4.fakesite.grid5000.fr' -p type='disk' -p disk='disk4.clustera-4'
 
 echo; echo 'Setting properties for disk disk4.clustera-4 on host clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk5.clustera-4 on host clustera-4.fakesite.grid5000.fr:'
@@ -347,7 +348,7 @@ disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk5.clustera-4' && echo '=> disk
 disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk5.clustera-4' || oarnodesetting -a -h '' -p host='clustera-4.fakesite.grid5000.fr' -p type='disk' -p disk='disk5.clustera-4'
 
 echo; echo 'Setting properties for disk disk5.clustera-4 on host clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-4'" -p ip='172.16.71.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36ZYH82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -372,7 +373,7 @@ oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='clustera-5.fakesite.grid5000.fr' -p cpu=10 -p core=79 -p cpuset=13
 oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='clustera-5.fakesite.grid5000.fr' -p cpu=10 -p core=80 -p cpuset=15
 echo; echo 'Setting properties for clustera-5.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
+oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-5 on host clustera-5.fakesite.grid5000.fr:'
@@ -380,7 +381,7 @@ disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk1.clustera-5' && echo '=> disk
 disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk1.clustera-5' || oarnodesetting -a -h '' -p host='clustera-5.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-5'
 
 echo; echo 'Setting properties for disk disk1.clustera-5 on host clustera-5.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-5 on host clustera-5.fakesite.grid5000.fr:'
@@ -388,7 +389,7 @@ disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk2.clustera-5' && echo '=> disk
 disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk2.clustera-5' || oarnodesetting -a -h '' -p host='clustera-5.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-5'
 
 echo; echo 'Setting properties for disk disk2.clustera-5 on host clustera-5.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-5 on host clustera-5.fakesite.grid5000.fr:'
@@ -396,7 +397,7 @@ disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk3.clustera-5' && echo '=> disk
 disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk3.clustera-5' || oarnodesetting -a -h '' -p host='clustera-5.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-5'
 
 echo; echo 'Setting properties for disk disk3.clustera-5 on host clustera-5.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk4.clustera-5 on host clustera-5.fakesite.grid5000.fr:'
@@ -404,7 +405,7 @@ disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk4.clustera-5' && echo '=> disk
 disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk4.clustera-5' || oarnodesetting -a -h '' -p host='clustera-5.fakesite.grid5000.fr' -p type='disk' -p disk='disk4.clustera-5'
 
 echo; echo 'Setting properties for disk disk4.clustera-5 on host clustera-5.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk5.clustera-5 on host clustera-5.fakesite.grid5000.fr:'
@@ -412,7 +413,7 @@ disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk5.clustera-5' && echo '=> disk
 disk_exist 'clustera-5.fakesite.grid5000.fr' 'disk5.clustera-5' || oarnodesetting -a -h '' -p host='clustera-5.fakesite.grid5000.fr' -p type='disk' -p disk='disk5.clustera-5'
 
 echo; echo 'Setting properties for disk disk5.clustera-5 on host clustera-5.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-5'" -p ip='172.16.71.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36X1J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-5.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-5' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -437,7 +438,7 @@ oarnodesetting -a -h 'clustera-6.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-6.fakesite.grid5000.fr' -s Absent -p host='clustera-6.fakesite.grid5000.fr' -p cpu=12 -p core=95 -p cpuset=13
 oarnodesetting -a -h 'clustera-6.fakesite.grid5000.fr' -s Absent -p host='clustera-6.fakesite.grid5000.fr' -p cpu=12 -p core=96 -p cpuset=15
 echo; echo 'Setting properties for clustera-6.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
+oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-6 on host clustera-6.fakesite.grid5000.fr:'
@@ -445,7 +446,7 @@ disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk1.clustera-6' && echo '=> disk
 disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk1.clustera-6' || oarnodesetting -a -h '' -p host='clustera-6.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-6'
 
 echo; echo 'Setting properties for disk disk1.clustera-6 on host clustera-6.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-6 on host clustera-6.fakesite.grid5000.fr:'
@@ -453,7 +454,7 @@ disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk2.clustera-6' && echo '=> disk
 disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk2.clustera-6' || oarnodesetting -a -h '' -p host='clustera-6.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-6'
 
 echo; echo 'Setting properties for disk disk2.clustera-6 on host clustera-6.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-6 on host clustera-6.fakesite.grid5000.fr:'
@@ -461,7 +462,7 @@ disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk3.clustera-6' && echo '=> disk
 disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk3.clustera-6' || oarnodesetting -a -h '' -p host='clustera-6.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-6'
 
 echo; echo 'Setting properties for disk disk3.clustera-6 on host clustera-6.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk4.clustera-6 on host clustera-6.fakesite.grid5000.fr:'
@@ -469,7 +470,7 @@ disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk4.clustera-6' && echo '=> disk
 disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk4.clustera-6' || oarnodesetting -a -h '' -p host='clustera-6.fakesite.grid5000.fr' -p type='disk' -p disk='disk4.clustera-6'
 
 echo; echo 'Setting properties for disk disk4.clustera-6 on host clustera-6.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk5.clustera-6 on host clustera-6.fakesite.grid5000.fr:'
@@ -477,7 +478,7 @@ disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk5.clustera-6' && echo '=> disk
 disk_exist 'clustera-6.fakesite.grid5000.fr' 'disk5.clustera-6' || oarnodesetting -a -h '' -p host='clustera-6.fakesite.grid5000.fr' -p type='disk' -p disk='disk5.clustera-6'
 
 echo; echo 'Setting properties for disk disk5.clustera-6 on host clustera-6.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-6.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-6'" -p ip='172.16.71.6' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3722J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-6.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-6' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -502,7 +503,7 @@ oarnodesetting -a -h 'clustera-7.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-7.fakesite.grid5000.fr' -s Absent -p host='clustera-7.fakesite.grid5000.fr' -p cpu=14 -p core=111 -p cpuset=13
 oarnodesetting -a -h 'clustera-7.fakesite.grid5000.fr' -s Absent -p host='clustera-7.fakesite.grid5000.fr' -p cpu=14 -p core=112 -p cpuset=15
 echo; echo 'Setting properties for clustera-7.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
+oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-7 on host clustera-7.fakesite.grid5000.fr:'
@@ -510,7 +511,7 @@ disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk1.clustera-7' && echo '=> disk
 disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk1.clustera-7' || oarnodesetting -a -h '' -p host='clustera-7.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-7'
 
 echo; echo 'Setting properties for disk disk1.clustera-7 on host clustera-7.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-7 on host clustera-7.fakesite.grid5000.fr:'
@@ -518,7 +519,7 @@ disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk2.clustera-7' && echo '=> disk
 disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk2.clustera-7' || oarnodesetting -a -h '' -p host='clustera-7.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-7'
 
 echo; echo 'Setting properties for disk disk2.clustera-7 on host clustera-7.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-7 on host clustera-7.fakesite.grid5000.fr:'
@@ -526,7 +527,7 @@ disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk3.clustera-7' && echo '=> disk
 disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk3.clustera-7' || oarnodesetting -a -h '' -p host='clustera-7.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-7'
 
 echo; echo 'Setting properties for disk disk3.clustera-7 on host clustera-7.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk4.clustera-7 on host clustera-7.fakesite.grid5000.fr:'
@@ -534,7 +535,7 @@ disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk4.clustera-7' && echo '=> disk
 disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk4.clustera-7' || oarnodesetting -a -h '' -p host='clustera-7.fakesite.grid5000.fr' -p type='disk' -p disk='disk4.clustera-7'
 
 echo; echo 'Setting properties for disk disk4.clustera-7 on host clustera-7.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk5.clustera-7 on host clustera-7.fakesite.grid5000.fr:'
@@ -542,7 +543,7 @@ disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk5.clustera-7' && echo '=> disk
 disk_exist 'clustera-7.fakesite.grid5000.fr' 'disk5.clustera-7' || oarnodesetting -a -h '' -p host='clustera-7.fakesite.grid5000.fr' -p type='disk' -p disk='disk5.clustera-7'
 
 echo; echo 'Setting properties for disk disk5.clustera-7 on host clustera-7.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-7.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-7'" -p ip='172.16.71.7' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 36Y3J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-7.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-7' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -567,7 +568,7 @@ oarnodesetting -a -h 'clustera-8.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-8.fakesite.grid5000.fr' -s Absent -p host='clustera-8.fakesite.grid5000.fr' -p cpu=16 -p core=127 -p cpuset=13
 oarnodesetting -a -h 'clustera-8.fakesite.grid5000.fr' -s Absent -p host='clustera-8.fakesite.grid5000.fr' -p cpu=16 -p core=128 -p cpuset=15
 echo; echo 'Setting properties for clustera-8.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
+oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='default'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-8 on host clustera-8.fakesite.grid5000.fr:'
@@ -575,7 +576,7 @@ disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk1.clustera-8' && echo '=> disk
 disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk1.clustera-8' || oarnodesetting -a -h '' -p host='clustera-8.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-8'
 
 echo; echo 'Setting properties for disk disk1.clustera-8 on host clustera-8.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-8 on host clustera-8.fakesite.grid5000.fr:'
@@ -583,7 +584,7 @@ disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk2.clustera-8' && echo '=> disk
 disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk2.clustera-8' || oarnodesetting -a -h '' -p host='clustera-8.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-8'
 
 echo; echo 'Setting properties for disk disk2.clustera-8 on host clustera-8.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-8 on host clustera-8.fakesite.grid5000.fr:'
@@ -591,7 +592,7 @@ disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk3.clustera-8' && echo '=> disk
 disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk3.clustera-8' || oarnodesetting -a -h '' -p host='clustera-8.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-8'
 
 echo; echo 'Setting properties for disk disk3.clustera-8 on host clustera-8.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk4.clustera-8 on host clustera-8.fakesite.grid5000.fr:'
@@ -599,7 +600,7 @@ disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk4.clustera-8' && echo '=> disk
 disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk4.clustera-8' || oarnodesetting -a -h '' -p host='clustera-8.fakesite.grid5000.fr' -p type='disk' -p disk='disk4.clustera-8'
 
 echo; echo 'Setting properties for disk disk4.clustera-8 on host clustera-8.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk4.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk4.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:4:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk5.clustera-8 on host clustera-8.fakesite.grid5000.fr:'
@@ -607,6 +608,6 @@ disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk5.clustera-8' && echo '=> disk
 disk_exist 'clustera-8.fakesite.grid5000.fr' 'disk5.clustera-8' || oarnodesetting -a -h '' -p host='clustera-8.fakesite.grid5000.fr' -p type='disk' -p disk='disk5.clustera-8'
 
 echo; echo 'Setting properties for disk disk5.clustera-8 on host clustera-8.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-8.fakesite.grid5000.fr' and type='disk' and disk='disk5.clustera-8'" -p ip='172.16.71.8' -p cluster='clustera' -p nodemodel='Dell PowerEdge R630' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon E5-2630 v3' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R630 3703J82' -p eth_count=4 -p eth_kavlan_count=4 -p eth_rate=10 -p ib_count=1 -p ib_rate=56 -p ib='FDR' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_count=0 -p gpu_mem=0 -p exotic='NO' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201601 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=5 -p host='clustera-8.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk5.clustera-8' -p diskpath='/dev/disk/by-path/pci-0000:03:00.0-scsi-0:0:5:0' -p cpuset=-1
 
 echo '================================================================================'
diff --git a/spec/output/grimoire_empty_table_stdout.txt b/spec/output/grimoire_empty_table_stdout.txt
index f577025da183f7d224baec480885bc7a35077276..b500ca71042bd7311a92950519efe561f7bafffc 100644
--- a/spec/output/grimoire_empty_table_stdout.txt
+++ b/spec/output/grimoire_empty_table_stdout.txt
@@ -1,132 +1,139 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 1     | 2     | 2        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 1     | 3     | 4        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 1     | 4     | 6        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 1     | 5     | 8        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 1     | 6     | 10       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 1     | 7     | 12       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 1     | 8     | 14       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 2     | 9     | 1        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 2     | 10    | 3        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 2     | 11    | 5        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 2     | 12    | 7        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 2     | 13    | 9        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 2     | 14    | 11       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 2     | 15    | 13       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-1           | 2     | 16    | 15       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 3     | 17    | 0        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 3     | 18    | 2        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 3     | 19    | 4        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 3     | 20    | 6        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 3     | 21    | 8        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 3     | 22    | 10       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 3     | 23    | 12       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 3     | 24    | 14       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 4     | 25    | 1        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 4     | 26    | 3        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 4     | 27    | 5        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 4     | 28    | 7        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 4     | 29    | 9        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 4     | 30    | 11       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 4     | 31    | 13       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-2           | 4     | 32    | 15       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 5     | 33    | 0        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 5     | 34    | 2        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 5     | 35    | 4        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 5     | 36    | 6        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 5     | 37    | 8        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 5     | 38    | 10       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 5     | 39    | 12       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 5     | 40    | 14       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 6     | 41    | 1        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 6     | 42    | 3        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 6     | 43    | 5        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 6     | 44    | 7        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 6     | 45    | 9        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 6     | 46    | 11       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 6     | 47    | 13       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-3           | 6     | 48    | 15       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 7     | 49    | 0        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 7     | 50    | 2        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 7     | 51    | 4        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 7     | 52    | 6        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 7     | 53    | 8        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 7     | 54    | 10       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 7     | 55    | 12       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 7     | 56    | 14       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 8     | 57    | 1        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 8     | 58    | 3        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 8     | 59    | 5        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 8     | 60    | 7        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 8     | 61    | 9        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 8     | 62    | 11       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 8     | 63    | 13       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-4           | 8     | 64    | 15       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 9     | 65    | 0        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 9     | 66    | 2        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 9     | 67    | 4        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 9     | 68    | 6        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 9     | 69    | 8        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 9     | 70    | 10       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 9     | 71    | 12       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 9     | 72    | 14       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 10    | 73    | 1        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 10    | 74    | 3        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 10    | 75    | 5        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 10    | 76    | 7        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 10    | 77    | 9        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 10    | 78    | 11       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 10    | 79    | 13       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-5           | 10    | 80    | 15       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 11    | 81    | 0        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 11    | 82    | 2        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 11    | 83    | 4        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 11    | 84    | 6        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 11    | 85    | 8        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 11    | 86    | 10       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 11    | 87    | 12       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 11    | 88    | 14       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 12    | 89    | 1        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 12    | 90    | 3        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 12    | 91    | 5        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 12    | 92    | 7        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 12    | 93    | 9        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 12    | 94    | 11       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 12    | 95    | 13       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-6           | 12    | 96    | 15       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 13    | 97    | 0        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 13    | 98    | 2        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 13    | 99    | 4        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 13    | 100   | 6        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 13    | 101   | 8        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 13    | 102   | 10       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 13    | 103   | 12       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 13    | 104   | 14       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 14    | 105   | 1        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 14    | 106   | 3        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 14    | 107   | 5        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 14    | 108   | 7        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 14    | 109   | 9        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 14    | 110   | 11       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 14    | 111   | 13       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-7           | 14    | 112   | 15       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 15    | 113   | 0        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 15    | 114   | 2        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 15    | 115   | 4        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 15    | 116   | 6        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 15    | 117   | 8        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 15    | 118   | 10       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 15    | 119   | 12       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 15    | 120   | 14       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 16    | 121   | 1        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 16    | 122   | 3        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 16    | 123   | 5        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 16    | 124   | 7        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 16    | 125   | 9        |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 16    | 126   | 11       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 16    | 127   | 13       |      |                      | Intel Xeon E5-2630 v3          |                               |
-|  clustera | clustera-8           | 16    | 128   | 15       |      |                      | Intel Xeon E5-2630 v3          |                               |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 1     | 2     | 2      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 1     | 3     | 4      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 1     | 4     | 6      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 1     | 5     | 8      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 1     | 6     | 10     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 1     | 7     | 12     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 1     | 8     | 14     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 2     | 9     | 1      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 2     | 10    | 3      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 2     | 11    | 5      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 2     | 12    | 7      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 2     | 13    | 9      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 2     | 14    | 11     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 2     | 15    | 13     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon E5-2630 v3     |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 3     | 18    | 2      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 3     | 19    | 4      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 3     | 20    | 6      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 3     | 21    | 8      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 3     | 22    | 10     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 3     | 23    | 12     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 3     | 24    | 14     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 4     | 25    | 1      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 4     | 26    | 3      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 4     | 27    | 5      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 4     | 28    | 7      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 4     | 29    | 9      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 4     | 30    | 11     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 4     | 31    | 13     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon E5-2630 v3     |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 5     | 33    | 0      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 5     | 34    | 2      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 5     | 35    | 4      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 5     | 36    | 6      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 5     | 37    | 8      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 5     | 38    | 10     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 5     | 39    | 12     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 5     | 40    | 14     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 6     | 41    | 1      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 6     | 42    | 3      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 6     | 43    | 5      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 6     | 44    | 7      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 6     | 45    | 9      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 6     | 46    | 11     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 6     | 47    | 13     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-3           | 6     | 48    | 15     | Intel Xeon E5-2630 v3     |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 7     | 49    | 0      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 7     | 50    | 2      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 7     | 51    | 4      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 7     | 52    | 6      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 7     | 53    | 8      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 7     | 54    | 10     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 7     | 55    | 12     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 7     | 56    | 14     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 8     | 57    | 1      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 8     | 58    | 3      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 8     | 59    | 5      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 8     | 60    | 7      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 8     | 61    | 9      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 8     | 62    | 11     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 8     | 63    | 13     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-4           | 8     | 64    | 15     | Intel Xeon E5-2630 v3     |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-5           | 9     | 65    | 0      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 9     | 66    | 2      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 9     | 67    | 4      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 9     | 68    | 6      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 9     | 69    | 8      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 9     | 70    | 10     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 9     | 71    | 12     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 9     | 72    | 14     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 10    | 73    | 1      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 10    | 74    | 3      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 10    | 75    | 5      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 10    | 76    | 7      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 10    | 77    | 9      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 10    | 78    | 11     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 10    | 79    | 13     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-5           | 10    | 80    | 15     | Intel Xeon E5-2630 v3     |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-6           | 11    | 81    | 0      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 11    | 82    | 2      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 11    | 83    | 4      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 11    | 84    | 6      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 11    | 85    | 8      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 11    | 86    | 10     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 11    | 87    | 12     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 11    | 88    | 14     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 12    | 89    | 1      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 12    | 90    | 3      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 12    | 91    | 5      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 12    | 92    | 7      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 12    | 93    | 9      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 12    | 94    | 11     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 12    | 95    | 13     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-6           | 12    | 96    | 15     | Intel Xeon E5-2630 v3     |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-7           | 13    | 97    | 0      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 13    | 98    | 2      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 13    | 99    | 4      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 13    | 100   | 6      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 13    | 101   | 8      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 13    | 102   | 10     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 13    | 103   | 12     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 13    | 104   | 14     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 14    | 105   | 1      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 14    | 106   | 3      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 14    | 107   | 5      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 14    | 108   | 7      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 14    | 109   | 9      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 14    | 110   | 11     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 14    | 111   | 13     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-7           | 14    | 112   | 15     | Intel Xeon E5-2630 v3     |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-8           | 15    | 113   | 0      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 15    | 114   | 2      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 15    | 115   | 4      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 15    | 116   | 6      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 15    | 117   | 8      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 15    | 118   | 10     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 15    | 119   | 12     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 15    | 120   | 14     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 16    | 121   | 1      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 16    | 122   | 3      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 16    | 123   | 5      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 16    | 124   | 7      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 16    | 125   | 9      | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 16    | 126   | 11     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 16    | 127   | 13     | Intel Xeon E5-2630 v3     |      |            |                                |
+| clustera    | clustera-8           | 16    | 128   | 15     | Intel Xeon E5-2630 v3     |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/grue_empty_diff_stdout.txt b/spec/output/grue_empty_diff_stdout.txt
index bd50229b0b639e0950a2bd0e6e883931c834f4a8..d339014fb11eb594cf8509f51aadd69c290bc98c 100644
--- a/spec/output/grue_empty_diff_stdout.txt
+++ b/spec/output/grue_empty_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 15109]
     ["+", "gpu_model", "Tesla T4"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 15109]
     ["+", "gpu_model", "Tesla T4"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -100,6 +102,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 15109]
     ["+", "gpu_model", "Tesla T4"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -141,6 +144,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 15109]
     ["+", "gpu_model", "Tesla T4"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -182,6 +186,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 15109]
     ["+", "gpu_model", "Tesla T4"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -204,4 +209,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 64]
     ["+", "virtual", "amd-v"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/grue_empty_print_stdout.txt b/spec/output/grue_empty_print_stdout.txt
index e23a594fafbb3430f84e3b388346753c156220a3..58492e2d0f261ff0da9f295c93d5fa5610f0b127 100644
--- a/spec/output/grue_empty_print_stdout.txt
+++ b/spec/output/grue_empty_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -126,7 +127,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=31 -p cpuset=29 -p gpu=4 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=32 -p cpuset=31 -p gpu=3 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 FVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 FVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -167,7 +168,7 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=63 -p cpuset=29 -p gpu=8 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=64 -p cpuset=31 -p gpu=7 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 DVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 DVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -208,7 +209,7 @@ oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=95 -p cpuset=29 -p gpu=12 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=6 -p core=96 -p cpuset=31 -p gpu=11 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 CVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 CVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -249,7 +250,7 @@ oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=127 -p cpuset=29 -p gpu=16 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=8 -p core=128 -p cpuset=31 -p gpu=15 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 GVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 GVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -290,6 +291,6 @@ oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='clustera-5.fakesite.grid5000.fr' -p cpu=10 -p core=159 -p cpuset=29 -p gpu=20 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-5.fakesite.grid5000.fr' -s Absent -p host='clustera-5.fakesite.grid5000.fr' -p cpu=10 -p core=160 -p cpuset=31 -p gpu=19 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-5.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 BVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-5.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 BVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/grue_empty_table_stdout.txt b/spec/output/grue_empty_table_stdout.txt
index fec73ad914ad8361e4d96a835c17492a7ec0f954..45f3c6d962359b1c4ca6a4e591dfcb806cfe8dfc 100644
--- a/spec/output/grue_empty_table_stdout.txt
+++ b/spec/output/grue_empty_table_stdout.txt
@@ -1,164 +1,168 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 2     | 2        | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 3     | 4        | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 4     | 6        | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 5     | 8        | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 6     | 10       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 7     | 12       | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 8     | 14       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 9     | 16       | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 10    | 18       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 11    | 20       | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 12    | 22       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 13    | 24       | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 14    | 26       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 15    | 28       | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 16    | 30       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 17    | 1        | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 18    | 3        | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 19    | 5        | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 20    | 7        | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 21    | 9        | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 22    | 11       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 23    | 13       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 24    | 15       | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 25    | 17       | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 26    | 19       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 27    | 21       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 28    | 23       | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 29    | 25       | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 30    | 27       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 31    | 29       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 32    | 31       | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 33    | 0        | 5    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 34    | 2        | 6    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 35    | 4        | 5    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 36    | 6        | 6    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 37    | 8        | 5    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 38    | 10       | 6    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 39    | 12       | 5    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 40    | 14       | 6    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 41    | 16       | 5    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 42    | 18       | 6    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 43    | 20       | 5    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 44    | 22       | 6    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 45    | 24       | 5    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 46    | 26       | 6    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 47    | 28       | 5    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 3     | 48    | 30       | 6    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 49    | 1        | 7    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 50    | 3        | 8    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 51    | 5        | 8    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 52    | 7        | 7    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 53    | 9        | 7    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 54    | 11       | 8    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 55    | 13       | 8    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 56    | 15       | 7    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 57    | 17       | 7    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 58    | 19       | 8    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 59    | 21       | 8    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 60    | 23       | 7    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 61    | 25       | 7    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 62    | 27       | 8    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 63    | 29       | 8    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 4     | 64    | 31       | 7    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 65    | 0        | 9    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 66    | 2        | 10   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 67    | 4        | 9    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 68    | 6        | 10   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 69    | 8        | 9    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 70    | 10       | 10   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 71    | 12       | 9    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 72    | 14       | 10   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 73    | 16       | 9    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 74    | 18       | 10   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 75    | 20       | 9    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 76    | 22       | 10   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 77    | 24       | 9    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 78    | 26       | 10   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 79    | 28       | 9    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 5     | 80    | 30       | 10   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 81    | 1        | 11   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 82    | 3        | 12   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 83    | 5        | 12   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 84    | 7        | 11   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 85    | 9        | 11   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 86    | 11       | 12   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 87    | 13       | 12   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 88    | 15       | 11   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 89    | 17       | 11   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 90    | 19       | 12   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 91    | 21       | 12   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 92    | 23       | 11   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 93    | 25       | 11   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 94    | 27       | 12   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 95    | 29       | 12   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 6     | 96    | 31       | 11   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 97    | 0        | 13   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 98    | 2        | 14   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 99    | 4        | 13   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 100   | 6        | 14   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 101   | 8        | 13   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 102   | 10       | 14   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 103   | 12       | 13   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 104   | 14       | 14   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 105   | 16       | 13   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 106   | 18       | 14   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 107   | 20       | 13   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 108   | 22       | 14   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 109   | 24       | 13   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 110   | 26       | 14   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 111   | 28       | 13   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 7     | 112   | 30       | 14   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 113   | 1        | 15   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 114   | 3        | 16   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 115   | 5        | 16   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 116   | 7        | 15   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 117   | 9        | 15   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 118   | 11       | 16   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 119   | 13       | 16   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 120   | 15       | 15   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 121   | 17       | 15   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 122   | 19       | 16   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 123   | 21       | 16   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 124   | 23       | 15   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 125   | 25       | 15   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 126   | 27       | 16   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 127   | 29       | 16   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 8     | 128   | 31       | 15   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 129   | 0        | 17   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 130   | 2        | 18   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 131   | 4        | 17   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 132   | 6        | 18   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 133   | 8        | 17   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 134   | 10       | 18   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 135   | 12       | 17   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 136   | 14       | 18   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 137   | 16       | 17   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 138   | 18       | 18   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 139   | 20       | 17   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 140   | 22       | 18   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 141   | 24       | 17   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 142   | 26       | 18   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 143   | 28       | 17   | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 9     | 144   | 30       | 18   | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 145   | 1        | 19   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 146   | 3        | 20   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 147   | 5        | 20   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 148   | 7        | 19   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 149   | 9        | 19   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 150   | 11       | 20   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 151   | 13       | 20   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 152   | 15       | 19   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 153   | 17       | 19   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 154   | 19       | 20   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 155   | 21       | 20   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 156   | 23       | 19   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 157   | 25       | 19   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 158   | 27       | 20   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 159   | 29       | 20   | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 10    | 160   | 31       | 19   | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 2     | 2      | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 3     | 4      | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 4     | 6      | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 5     | 8      | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 6     | 10     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 7     | 12     | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 8     | 14     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 9     | 16     | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 10    | 18     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 11    | 20     | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 12    | 22     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 13    | 24     | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 14    | 26     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 15    | 28     | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 16    | 30     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 17    | 1      | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 18    | 3      | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 19    | 5      | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 20    | 7      | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 21    | 9      | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 22    | 11     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 23    | 13     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 24    | 15     | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 25    | 17     | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 26    | 19     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 27    | 21     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 28    | 23     | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 29    | 25     | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 30    | 27     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 31    | 29     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 32    | 31     | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 33    | 0      | AMD EPYC 7351             | 5    | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 34    | 2      | AMD EPYC 7351             | 6    | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 35    | 4      | AMD EPYC 7351             | 5    | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 36    | 6      | AMD EPYC 7351             | 6    | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 37    | 8      | AMD EPYC 7351             | 5    | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 38    | 10     | AMD EPYC 7351             | 6    | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 39    | 12     | AMD EPYC 7351             | 5    | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 40    | 14     | AMD EPYC 7351             | 6    | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 41    | 16     | AMD EPYC 7351             | 5    | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 42    | 18     | AMD EPYC 7351             | 6    | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 43    | 20     | AMD EPYC 7351             | 5    | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 44    | 22     | AMD EPYC 7351             | 6    | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 45    | 24     | AMD EPYC 7351             | 5    | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 46    | 26     | AMD EPYC 7351             | 6    | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 47    | 28     | AMD EPYC 7351             | 5    | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 3     | 48    | 30     | AMD EPYC 7351             | 6    | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 49    | 1      | AMD EPYC 7351             | 7    | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 50    | 3      | AMD EPYC 7351             | 8    | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 51    | 5      | AMD EPYC 7351             | 8    | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 52    | 7      | AMD EPYC 7351             | 7    | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 53    | 9      | AMD EPYC 7351             | 7    | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 54    | 11     | AMD EPYC 7351             | 8    | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 55    | 13     | AMD EPYC 7351             | 8    | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 56    | 15     | AMD EPYC 7351             | 7    | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 57    | 17     | AMD EPYC 7351             | 7    | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 58    | 19     | AMD EPYC 7351             | 8    | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 59    | 21     | AMD EPYC 7351             | 8    | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 60    | 23     | AMD EPYC 7351             | 7    | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 61    | 25     | AMD EPYC 7351             | 7    | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 62    | 27     | AMD EPYC 7351             | 8    | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 63    | 29     | AMD EPYC 7351             | 8    | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 4     | 64    | 31     | AMD EPYC 7351             | 7    | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 5     | 65    | 0      | AMD EPYC 7351             | 9    | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 66    | 2      | AMD EPYC 7351             | 10   | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 67    | 4      | AMD EPYC 7351             | 9    | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 68    | 6      | AMD EPYC 7351             | 10   | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 69    | 8      | AMD EPYC 7351             | 9    | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 70    | 10     | AMD EPYC 7351             | 10   | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 71    | 12     | AMD EPYC 7351             | 9    | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 72    | 14     | AMD EPYC 7351             | 10   | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 73    | 16     | AMD EPYC 7351             | 9    | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 74    | 18     | AMD EPYC 7351             | 10   | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 75    | 20     | AMD EPYC 7351             | 9    | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 76    | 22     | AMD EPYC 7351             | 10   | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 77    | 24     | AMD EPYC 7351             | 9    | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 78    | 26     | AMD EPYC 7351             | 10   | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 79    | 28     | AMD EPYC 7351             | 9    | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 5     | 80    | 30     | AMD EPYC 7351             | 10   | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 81    | 1      | AMD EPYC 7351             | 11   | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 82    | 3      | AMD EPYC 7351             | 12   | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 83    | 5      | AMD EPYC 7351             | 12   | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 84    | 7      | AMD EPYC 7351             | 11   | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 85    | 9      | AMD EPYC 7351             | 11   | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 86    | 11     | AMD EPYC 7351             | 12   | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 87    | 13     | AMD EPYC 7351             | 12   | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 88    | 15     | AMD EPYC 7351             | 11   | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 89    | 17     | AMD EPYC 7351             | 11   | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 90    | 19     | AMD EPYC 7351             | 12   | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 91    | 21     | AMD EPYC 7351             | 12   | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 92    | 23     | AMD EPYC 7351             | 11   | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 93    | 25     | AMD EPYC 7351             | 11   | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 94    | 27     | AMD EPYC 7351             | 12   | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 95    | 29     | AMD EPYC 7351             | 12   | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 6     | 96    | 31     | AMD EPYC 7351             | 11   | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 7     | 97    | 0      | AMD EPYC 7351             | 13   | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 98    | 2      | AMD EPYC 7351             | 14   | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 99    | 4      | AMD EPYC 7351             | 13   | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 100   | 6      | AMD EPYC 7351             | 14   | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 101   | 8      | AMD EPYC 7351             | 13   | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 102   | 10     | AMD EPYC 7351             | 14   | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 103   | 12     | AMD EPYC 7351             | 13   | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 104   | 14     | AMD EPYC 7351             | 14   | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 105   | 16     | AMD EPYC 7351             | 13   | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 106   | 18     | AMD EPYC 7351             | 14   | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 107   | 20     | AMD EPYC 7351             | 13   | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 108   | 22     | AMD EPYC 7351             | 14   | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 109   | 24     | AMD EPYC 7351             | 13   | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 110   | 26     | AMD EPYC 7351             | 14   | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 111   | 28     | AMD EPYC 7351             | 13   | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 7     | 112   | 30     | AMD EPYC 7351             | 14   | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 113   | 1      | AMD EPYC 7351             | 15   | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 114   | 3      | AMD EPYC 7351             | 16   | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 115   | 5      | AMD EPYC 7351             | 16   | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 116   | 7      | AMD EPYC 7351             | 15   | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 117   | 9      | AMD EPYC 7351             | 15   | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 118   | 11     | AMD EPYC 7351             | 16   | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 119   | 13     | AMD EPYC 7351             | 16   | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 120   | 15     | AMD EPYC 7351             | 15   | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 121   | 17     | AMD EPYC 7351             | 15   | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 122   | 19     | AMD EPYC 7351             | 16   | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 123   | 21     | AMD EPYC 7351             | 16   | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 124   | 23     | AMD EPYC 7351             | 15   | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 125   | 25     | AMD EPYC 7351             | 15   | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 126   | 27     | AMD EPYC 7351             | 16   | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 127   | 29     | AMD EPYC 7351             | 16   | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 8     | 128   | 31     | AMD EPYC 7351             | 15   | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-5           | 9     | 129   | 0      | AMD EPYC 7351             | 17   | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 130   | 2      | AMD EPYC 7351             | 18   | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 131   | 4      | AMD EPYC 7351             | 17   | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 132   | 6      | AMD EPYC 7351             | 18   | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 133   | 8      | AMD EPYC 7351             | 17   | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 134   | 10     | AMD EPYC 7351             | 18   | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 135   | 12     | AMD EPYC 7351             | 17   | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 136   | 14     | AMD EPYC 7351             | 18   | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 137   | 16     | AMD EPYC 7351             | 17   | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 138   | 18     | AMD EPYC 7351             | 18   | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 139   | 20     | AMD EPYC 7351             | 17   | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 140   | 22     | AMD EPYC 7351             | 18   | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 141   | 24     | AMD EPYC 7351             | 17   | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 142   | 26     | AMD EPYC 7351             | 18   | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 143   | 28     | AMD EPYC 7351             | 17   | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 9     | 144   | 30     | AMD EPYC 7351             | 18   | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 145   | 1      | AMD EPYC 7351             | 19   | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 146   | 3      | AMD EPYC 7351             | 20   | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 147   | 5      | AMD EPYC 7351             | 20   | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 148   | 7      | AMD EPYC 7351             | 19   | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 149   | 9      | AMD EPYC 7351             | 19   | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 150   | 11     | AMD EPYC 7351             | 20   | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 151   | 13     | AMD EPYC 7351             | 20   | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 152   | 15     | AMD EPYC 7351             | 19   | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 153   | 17     | AMD EPYC 7351             | 19   | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 154   | 19     | AMD EPYC 7351             | 20   | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 155   | 21     | AMD EPYC 7351             | 20   | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 156   | 23     | AMD EPYC 7351             | 19   | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 157   | 25     | AMD EPYC 7351             | 19   | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 158   | 27     | AMD EPYC 7351             | 20   | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 159   | 29     | AMD EPYC 7351             | 20   | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 10    | 160   | 31     | AMD EPYC 7351             | 19   | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/grue_nogpus_diff_stdout.txt b/spec/output/grue_nogpus_diff_stdout.txt
index 341e434697638b713b41a70e7c2a19aeaa680a8a..acbbde6831a3214d0c59371cb14a3465b78ca49d 100644
--- a/spec/output/grue_nogpus_diff_stdout.txt
+++ b/spec/output/grue_nogpus_diff_stdout.txt
@@ -6,12 +6,13 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 32]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 1]
+    ["+", "gpu_mem", 15109]
     ["+", "thread_count", 64]
   clustera-2: same modifications as above
   clustera-3: same modifications as above
   clustera-4: same modifications as above
   clustera-5: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
 Properties existing on the fakesite server but not managed/known by the generator: disk, diskpath.
 Hint: you can delete properties with 'oarproperty -d <property>' or add them to the ignore list in lib/lib-oar-properties.rb.
 # Error: Resource 12215 (host=clustera-1.nancy.grid5000.fr cpu=1765 core=10967 cpuset=0 gpu= gpudevice=) has a mismatch for ressource GPU: OAR API gives , generator wants 105.
diff --git a/spec/output/grue_nogpus_print_stdout.txt b/spec/output/grue_nogpus_print_stdout.txt
index 74c195c16cdd9eb082c3bee6e77c5599aad88571..59dfe585ae1d4b15e2d96e3b9154485b1a0bdbdc 100644
--- a/spec/output/grue_nogpus_print_stdout.txt
+++ b/spec/output/grue_nogpus_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -126,7 +127,7 @@ oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='12244
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='12245' AND type='default'" -p cpu=1766 -p core=10997 -p cpuset=29 -p gpu=108 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' AND resource_id='12246' AND type='default'" -p cpu=1766 -p core=10998 -p cpuset=31 -p gpu=107 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-1.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 FVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 FVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -167,7 +168,7 @@ oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='12276
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='12277' AND type='default'" -p cpu=1768 -p core=11029 -p cpuset=29 -p gpu=112 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' AND resource_id='12278' AND type='default'" -p cpu=1768 -p core=11030 -p cpuset=31 -p gpu=111 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-2.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 DVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 DVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -208,7 +209,7 @@ oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='12308
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='12309' AND type='default'" -p cpu=1770 -p core=11061 -p cpuset=29 -p gpu=116 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' AND resource_id='12310' AND type='default'" -p cpu=1770 -p core=11062 -p cpuset=31 -p gpu=115 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-3.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 CVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-3.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 CVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -249,7 +250,7 @@ oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='12340
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='12341' AND type='default'" -p cpu=1772 -p core=11093 -p cpuset=29 -p gpu=120 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' AND resource_id='12342' AND type='default'" -p cpu=1772 -p core=11094 -p cpuset=31 -p gpu=119 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-4.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 GVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-4.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 GVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=172800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -290,6 +291,6 @@ oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='12372
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='12373' AND type='default'" -p cpu=1774 -p core=11125 -p cpuset=29 -p gpu=124 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' AND resource_id='12374' AND type='default'" -p cpu=1774 -p core=11126 -p cpuset=31 -p gpu=123 -p gpu_model='Tesla T4' -p gpudevice=2 # This GPU is mapped on /dev/nvidia2
 echo; echo 'Setting properties for clustera-5.nancy.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 BVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-5.nancy.grid5000.fr' and type='default'" -p ip='172.16.77.5' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 BVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=604800 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/grue_nogpus_table_stdout.txt b/spec/output/grue_nogpus_table_stdout.txt
index 18478b0ca0eef266c8484fd6e77ba737d58e926b..880f7b0378b41c565d1013a3fa48dac66996a1af 100644
--- a/spec/output/grue_nogpus_table_stdout.txt
+++ b/spec/output/grue_nogpus_table_stdout.txt
@@ -1,164 +1,168 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1765  | 10967 | 0        | 105  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10968 | 2        | 106  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10969 | 4        | 105  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10970 | 6        | 106  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10971 | 8        | 105  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10972 | 10       | 106  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10973 | 12       | 105  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10974 | 14       | 106  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10975 | 16       | 105  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10976 | 18       | 106  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10977 | 20       | 105  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10978 | 22       | 106  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10979 | 24       | 105  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10980 | 26       | 106  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10981 | 28       | 105  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1765  | 10982 | 30       | 106  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10983 | 1        | 107  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10984 | 3        | 108  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10985 | 5        | 108  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10986 | 7        | 107  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10987 | 9        | 107  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10988 | 11       | 108  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10989 | 13       | 108  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10990 | 15       | 107  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10991 | 17       | 107  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10992 | 19       | 108  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10993 | 21       | 108  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10994 | 23       | 107  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10995 | 25       | 107  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10996 | 27       | 108  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10997 | 29       | 108  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1766  | 10998 | 31       | 107  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 10999 | 0        | 109  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11000 | 2        | 110  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11001 | 4        | 109  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11002 | 6        | 110  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11003 | 8        | 109  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11004 | 10       | 110  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11005 | 12       | 109  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11006 | 14       | 110  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11007 | 16       | 109  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11008 | 18       | 110  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11009 | 20       | 109  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11010 | 22       | 110  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11011 | 24       | 109  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11012 | 26       | 110  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11013 | 28       | 109  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1767  | 11014 | 30       | 110  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11015 | 1        | 111  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11016 | 3        | 112  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11017 | 5        | 112  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11018 | 7        | 111  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11019 | 9        | 111  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11020 | 11       | 112  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11021 | 13       | 112  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11022 | 15       | 111  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11023 | 17       | 111  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11024 | 19       | 112  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11025 | 21       | 112  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11026 | 23       | 111  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11027 | 25       | 111  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11028 | 27       | 112  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11029 | 29       | 112  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-2           | 1768  | 11030 | 31       | 111  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11031 | 0        | 113  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11032 | 2        | 114  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11033 | 4        | 113  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11034 | 6        | 114  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11035 | 8        | 113  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11036 | 10       | 114  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11037 | 12       | 113  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11038 | 14       | 114  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11039 | 16       | 113  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11040 | 18       | 114  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11041 | 20       | 113  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11042 | 22       | 114  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11043 | 24       | 113  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11044 | 26       | 114  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11045 | 28       | 113  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1769  | 11046 | 30       | 114  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11047 | 1        | 115  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11048 | 3        | 116  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11049 | 5        | 116  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11050 | 7        | 115  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11051 | 9        | 115  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11052 | 11       | 116  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11053 | 13       | 116  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11054 | 15       | 115  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11055 | 17       | 115  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11056 | 19       | 116  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11057 | 21       | 116  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11058 | 23       | 115  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11059 | 25       | 115  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11060 | 27       | 116  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11061 | 29       | 116  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-3           | 1770  | 11062 | 31       | 115  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11063 | 0        | 117  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11064 | 2        | 118  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11065 | 4        | 117  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11066 | 6        | 118  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11067 | 8        | 117  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11068 | 10       | 118  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11069 | 12       | 117  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11070 | 14       | 118  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11071 | 16       | 117  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11072 | 18       | 118  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11073 | 20       | 117  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11074 | 22       | 118  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11075 | 24       | 117  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11076 | 26       | 118  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11077 | 28       | 117  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1771  | 11078 | 30       | 118  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11079 | 1        | 119  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11080 | 3        | 120  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11081 | 5        | 120  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11082 | 7        | 119  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11083 | 9        | 119  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11084 | 11       | 120  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11085 | 13       | 120  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11086 | 15       | 119  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11087 | 17       | 119  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11088 | 19       | 120  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11089 | 21       | 120  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11090 | 23       | 119  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11091 | 25       | 119  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11092 | 27       | 120  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11093 | 29       | 120  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-4           | 1772  | 11094 | 31       | 119  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11095 | 0        | 121  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11096 | 2        | 122  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11097 | 4        | 121  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11098 | 6        | 122  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11099 | 8        | 121  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11100 | 10       | 122  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11101 | 12       | 121  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11102 | 14       | 122  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11103 | 16       | 121  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11104 | 18       | 122  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11105 | 20       | 121  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11106 | 22       | 122  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11107 | 24       | 121  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11108 | 26       | 122  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11109 | 28       | 121  | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1773  | 11110 | 30       | 122  | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11111 | 1        | 123  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11112 | 3        | 124  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11113 | 5        | 124  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11114 | 7        | 123  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11115 | 9        | 123  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11116 | 11       | 124  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11117 | 13       | 124  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11118 | 15       | 123  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11119 | 17       | 123  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11120 | 19       | 124  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11121 | 21       | 124  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11122 | 23       | 123  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11123 | 25       | 123  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11124 | 27       | 124  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11125 | 29       | 124  | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-5           | 1774  | 11126 | 31       | 123  | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1765  | 10967 | 0      | AMD EPYC 7351             | 105  | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10968 | 2      | AMD EPYC 7351             | 106  | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10969 | 4      | AMD EPYC 7351             | 105  | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10970 | 6      | AMD EPYC 7351             | 106  | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10971 | 8      | AMD EPYC 7351             | 105  | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10972 | 10     | AMD EPYC 7351             | 106  | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10973 | 12     | AMD EPYC 7351             | 105  | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10974 | 14     | AMD EPYC 7351             | 106  | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10975 | 16     | AMD EPYC 7351             | 105  | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10976 | 18     | AMD EPYC 7351             | 106  | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10977 | 20     | AMD EPYC 7351             | 105  | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10978 | 22     | AMD EPYC 7351             | 106  | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10979 | 24     | AMD EPYC 7351             | 105  | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10980 | 26     | AMD EPYC 7351             | 106  | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10981 | 28     | AMD EPYC 7351             | 105  | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1765  | 10982 | 30     | AMD EPYC 7351             | 106  | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10983 | 1      | AMD EPYC 7351             | 107  | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10984 | 3      | AMD EPYC 7351             | 108  | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10985 | 5      | AMD EPYC 7351             | 108  | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10986 | 7      | AMD EPYC 7351             | 107  | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10987 | 9      | AMD EPYC 7351             | 107  | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10988 | 11     | AMD EPYC 7351             | 108  | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10989 | 13     | AMD EPYC 7351             | 108  | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10990 | 15     | AMD EPYC 7351             | 107  | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10991 | 17     | AMD EPYC 7351             | 107  | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10992 | 19     | AMD EPYC 7351             | 108  | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10993 | 21     | AMD EPYC 7351             | 108  | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10994 | 23     | AMD EPYC 7351             | 107  | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10995 | 25     | AMD EPYC 7351             | 107  | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10996 | 27     | AMD EPYC 7351             | 108  | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10997 | 29     | AMD EPYC 7351             | 108  | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 1766  | 10998 | 31     | AMD EPYC 7351             | 107  | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 1767  | 10999 | 0      | AMD EPYC 7351             | 109  | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11000 | 2      | AMD EPYC 7351             | 110  | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11001 | 4      | AMD EPYC 7351             | 109  | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11002 | 6      | AMD EPYC 7351             | 110  | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11003 | 8      | AMD EPYC 7351             | 109  | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11004 | 10     | AMD EPYC 7351             | 110  | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11005 | 12     | AMD EPYC 7351             | 109  | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11006 | 14     | AMD EPYC 7351             | 110  | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11007 | 16     | AMD EPYC 7351             | 109  | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11008 | 18     | AMD EPYC 7351             | 110  | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11009 | 20     | AMD EPYC 7351             | 109  | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11010 | 22     | AMD EPYC 7351             | 110  | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11011 | 24     | AMD EPYC 7351             | 109  | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11012 | 26     | AMD EPYC 7351             | 110  | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11013 | 28     | AMD EPYC 7351             | 109  | 0          | Tesla T4                       |
+| clustera    | clustera-2           | 1767  | 11014 | 30     | AMD EPYC 7351             | 110  | 1          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11015 | 1      | AMD EPYC 7351             | 111  | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11016 | 3      | AMD EPYC 7351             | 112  | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11017 | 5      | AMD EPYC 7351             | 112  | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11018 | 7      | AMD EPYC 7351             | 111  | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11019 | 9      | AMD EPYC 7351             | 111  | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11020 | 11     | AMD EPYC 7351             | 112  | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11021 | 13     | AMD EPYC 7351             | 112  | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11022 | 15     | AMD EPYC 7351             | 111  | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11023 | 17     | AMD EPYC 7351             | 111  | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11024 | 19     | AMD EPYC 7351             | 112  | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11025 | 21     | AMD EPYC 7351             | 112  | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11026 | 23     | AMD EPYC 7351             | 111  | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11027 | 25     | AMD EPYC 7351             | 111  | 2          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11028 | 27     | AMD EPYC 7351             | 112  | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11029 | 29     | AMD EPYC 7351             | 112  | 3          | Tesla T4                       |
+| clustera    | clustera-2           | 1768  | 11030 | 31     | AMD EPYC 7351             | 111  | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 1769  | 11031 | 0      | AMD EPYC 7351             | 113  | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11032 | 2      | AMD EPYC 7351             | 114  | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11033 | 4      | AMD EPYC 7351             | 113  | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11034 | 6      | AMD EPYC 7351             | 114  | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11035 | 8      | AMD EPYC 7351             | 113  | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11036 | 10     | AMD EPYC 7351             | 114  | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11037 | 12     | AMD EPYC 7351             | 113  | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11038 | 14     | AMD EPYC 7351             | 114  | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11039 | 16     | AMD EPYC 7351             | 113  | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11040 | 18     | AMD EPYC 7351             | 114  | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11041 | 20     | AMD EPYC 7351             | 113  | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11042 | 22     | AMD EPYC 7351             | 114  | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11043 | 24     | AMD EPYC 7351             | 113  | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11044 | 26     | AMD EPYC 7351             | 114  | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11045 | 28     | AMD EPYC 7351             | 113  | 0          | Tesla T4                       |
+| clustera    | clustera-3           | 1769  | 11046 | 30     | AMD EPYC 7351             | 114  | 1          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11047 | 1      | AMD EPYC 7351             | 115  | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11048 | 3      | AMD EPYC 7351             | 116  | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11049 | 5      | AMD EPYC 7351             | 116  | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11050 | 7      | AMD EPYC 7351             | 115  | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11051 | 9      | AMD EPYC 7351             | 115  | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11052 | 11     | AMD EPYC 7351             | 116  | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11053 | 13     | AMD EPYC 7351             | 116  | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11054 | 15     | AMD EPYC 7351             | 115  | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11055 | 17     | AMD EPYC 7351             | 115  | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11056 | 19     | AMD EPYC 7351             | 116  | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11057 | 21     | AMD EPYC 7351             | 116  | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11058 | 23     | AMD EPYC 7351             | 115  | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11059 | 25     | AMD EPYC 7351             | 115  | 2          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11060 | 27     | AMD EPYC 7351             | 116  | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11061 | 29     | AMD EPYC 7351             | 116  | 3          | Tesla T4                       |
+| clustera    | clustera-3           | 1770  | 11062 | 31     | AMD EPYC 7351             | 115  | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 1771  | 11063 | 0      | AMD EPYC 7351             | 117  | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11064 | 2      | AMD EPYC 7351             | 118  | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11065 | 4      | AMD EPYC 7351             | 117  | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11066 | 6      | AMD EPYC 7351             | 118  | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11067 | 8      | AMD EPYC 7351             | 117  | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11068 | 10     | AMD EPYC 7351             | 118  | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11069 | 12     | AMD EPYC 7351             | 117  | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11070 | 14     | AMD EPYC 7351             | 118  | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11071 | 16     | AMD EPYC 7351             | 117  | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11072 | 18     | AMD EPYC 7351             | 118  | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11073 | 20     | AMD EPYC 7351             | 117  | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11074 | 22     | AMD EPYC 7351             | 118  | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11075 | 24     | AMD EPYC 7351             | 117  | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11076 | 26     | AMD EPYC 7351             | 118  | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11077 | 28     | AMD EPYC 7351             | 117  | 0          | Tesla T4                       |
+| clustera    | clustera-4           | 1771  | 11078 | 30     | AMD EPYC 7351             | 118  | 1          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11079 | 1      | AMD EPYC 7351             | 119  | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11080 | 3      | AMD EPYC 7351             | 120  | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11081 | 5      | AMD EPYC 7351             | 120  | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11082 | 7      | AMD EPYC 7351             | 119  | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11083 | 9      | AMD EPYC 7351             | 119  | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11084 | 11     | AMD EPYC 7351             | 120  | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11085 | 13     | AMD EPYC 7351             | 120  | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11086 | 15     | AMD EPYC 7351             | 119  | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11087 | 17     | AMD EPYC 7351             | 119  | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11088 | 19     | AMD EPYC 7351             | 120  | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11089 | 21     | AMD EPYC 7351             | 120  | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11090 | 23     | AMD EPYC 7351             | 119  | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11091 | 25     | AMD EPYC 7351             | 119  | 2          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11092 | 27     | AMD EPYC 7351             | 120  | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11093 | 29     | AMD EPYC 7351             | 120  | 3          | Tesla T4                       |
+| clustera    | clustera-4           | 1772  | 11094 | 31     | AMD EPYC 7351             | 119  | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-5           | 1773  | 11095 | 0      | AMD EPYC 7351             | 121  | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11096 | 2      | AMD EPYC 7351             | 122  | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11097 | 4      | AMD EPYC 7351             | 121  | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11098 | 6      | AMD EPYC 7351             | 122  | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11099 | 8      | AMD EPYC 7351             | 121  | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11100 | 10     | AMD EPYC 7351             | 122  | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11101 | 12     | AMD EPYC 7351             | 121  | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11102 | 14     | AMD EPYC 7351             | 122  | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11103 | 16     | AMD EPYC 7351             | 121  | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11104 | 18     | AMD EPYC 7351             | 122  | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11105 | 20     | AMD EPYC 7351             | 121  | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11106 | 22     | AMD EPYC 7351             | 122  | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11107 | 24     | AMD EPYC 7351             | 121  | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11108 | 26     | AMD EPYC 7351             | 122  | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11109 | 28     | AMD EPYC 7351             | 121  | 0          | Tesla T4                       |
+| clustera    | clustera-5           | 1773  | 11110 | 30     | AMD EPYC 7351             | 122  | 1          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11111 | 1      | AMD EPYC 7351             | 123  | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11112 | 3      | AMD EPYC 7351             | 124  | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11113 | 5      | AMD EPYC 7351             | 124  | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11114 | 7      | AMD EPYC 7351             | 123  | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11115 | 9      | AMD EPYC 7351             | 123  | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11116 | 11     | AMD EPYC 7351             | 124  | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11117 | 13     | AMD EPYC 7351             | 124  | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11118 | 15     | AMD EPYC 7351             | 123  | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11119 | 17     | AMD EPYC 7351             | 123  | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11120 | 19     | AMD EPYC 7351             | 124  | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11121 | 21     | AMD EPYC 7351             | 124  | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11122 | 23     | AMD EPYC 7351             | 123  | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11123 | 25     | AMD EPYC 7351             | 123  | 2          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11124 | 27     | AMD EPYC 7351             | 124  | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11125 | 29     | AMD EPYC 7351             | 124  | 3          | Tesla T4                       |
+| clustera    | clustera-5           | 1774  | 11126 | 31     | AMD EPYC 7351             | 123  | 2          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/grue_overridden_affinity_diff_stdout.txt b/spec/output/grue_overridden_affinity_diff_stdout.txt
index 78221248e1505802ce43f9e546d901a5a2949529..57efe3d26c857786aa70ae22a5bd27e7b2495bd5 100644
--- a/spec/output/grue_overridden_affinity_diff_stdout.txt
+++ b/spec/output/grue_overridden_affinity_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 15109]
     ["+", "gpu_model", "Tesla T4"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -40,4 +41,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 64]
     ["+", "virtual", "amd-v"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/grue_overridden_affinity_print_stdout.txt b/spec/output/grue_overridden_affinity_print_stdout.txt
index 028435e9f4ef1d8a9cf0de883df8b6e7db50be4f..cd8898eebca1f5d74099b47127c8fb9485e06eae 100644
--- a/spec/output/grue_overridden_affinity_print_stdout.txt
+++ b/spec/output/grue_overridden_affinity_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -126,6 +127,6 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=31 -p cpuset=29 -p gpu=4 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=2 -p core=32 -p cpuset=31 -p gpu=4 -p gpu_model='Tesla T4' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 FVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.77.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R7425' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='amd-v' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=2 -p core_count=32 -p thread_count=64 -p cputype='AMD EPYC 7351' -p cpufreq='2.4' -p disktype='SAS/HDD' -p chassis='Dell Inc. PowerEdge R7425 FVJVY03' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=4096 -p memcpu=65536 -p memnode=131072 -p gpu_model='Tesla T4' -p gpu_count=4 -p gpu_mem=15109 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201911 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/grue_overridden_affinity_table_stdout.txt b/spec/output/grue_overridden_affinity_table_stdout.txt
index bc05aaa8257b3bb38461d014d884c254721036d5..92392b4eb9c77ecfb1feb6f09de37126ba1e8cfc 100644
--- a/spec/output/grue_overridden_affinity_table_stdout.txt
+++ b/spec/output/grue_overridden_affinity_table_stdout.txt
@@ -1,36 +1,36 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 2     | 2        | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 3     | 4        | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 4     | 6        | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 5     | 8        | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 6     | 10       | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 7     | 12       | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 8     | 14       | 1    | 0                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 9     | 16       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 10    | 18       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 11    | 20       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 12    | 22       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 13    | 24       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 14    | 26       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 15    | 28       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 1     | 16    | 30       | 2    | 1                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 17    | 1        | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 18    | 3        | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 19    | 5        | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 20    | 7        | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 21    | 9        | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 22    | 11       | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 23    | 13       | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 24    | 15       | 3    | 2                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 25    | 17       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 26    | 19       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 27    | 21       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 28    | 23       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 29    | 25       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 30    | 27       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 31    | 29       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-|  clustera | clustera-1           | 2     | 32    | 31       | 4    | 3                    | AMD EPYC 7351                  | Tesla T4                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 2     | 2      | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 3     | 4      | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 4     | 6      | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 5     | 8      | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 6     | 10     | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 7     | 12     | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 8     | 14     | AMD EPYC 7351             | 1    | 0          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 9     | 16     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 10    | 18     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 11    | 20     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 12    | 22     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 13    | 24     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 14    | 26     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 15    | 28     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 1     | 16    | 30     | AMD EPYC 7351             | 2    | 1          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 17    | 1      | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 18    | 3      | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 19    | 5      | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 20    | 7      | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 21    | 9      | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 22    | 11     | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 23    | 13     | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 24    | 15     | AMD EPYC 7351             | 3    | 2          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 25    | 17     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 26    | 19     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 27    | 21     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 28    | 23     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 29    | 25     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 30    | 27     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 31    | 29     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
+| clustera    | clustera-1           | 2     | 32    | 31     | AMD EPYC 7351             | 4    | 3          | Tesla T4                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/missing_property_diff_stdout.txt b/spec/output/missing_property_diff_stdout.txt
index cf4f80314f5e53b9e8f8bb4db3870ca943fe4862..125c04d04f8f8baad6acd80e08d449ff0725bfb8 100644
--- a/spec/output/missing_property_diff_stdout.txt
+++ b/spec/output/missing_property_diff_stdout.txt
@@ -4,7 +4,8 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "ib_rate", 0]
     ["+", "thread_count", 32]
   clustera-2: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, ib_rate
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, ib_rate, gpu_mem
diff --git a/spec/output/missing_property_print_stdout.txt b/spec/output/missing_property_print_stdout.txt
index db086ef26b15de5a2209c2e415e3873c4e806777..0a031fa1cf7d53b0fa5bf6a5bbb71a60f2504a70 100644
--- a/spec/output/missing_property_print_stdout.txt
+++ b/spec/output/missing_property_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/missing_property_table_stdout.txt b/spec/output/missing_property_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/missing_property_table_stdout.txt
+++ b/spec/output/missing_property_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/non_reservable_gpus_diff_stdout.txt b/spec/output/non_reservable_gpus_diff_stdout.txt
index e6268f9ef3b0e47187238a7b04ef1f1626335bf8..921eb3e9b576b006fab55b6a6e33cba4a6695bec 100644
--- a/spec/output/non_reservable_gpus_diff_stdout.txt
+++ b/spec/output/non_reservable_gpus_diff_stdout.txt
@@ -4,9 +4,10 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
 # Error: Resource 1 (host=clustera-1.fakesite.grid5000.fr cpu=1 core=1 cpuset=0 gpu=1 gpudevice=0) has a mismatch for ressource GPU: OAR API gives 1, generator wants null.
 # Error: Resource 1 (host=clustera-1.fakesite.grid5000.fr cpu=1 core=1 cpuset=0 gpu=1 gpudevice=0) has a mismatch for ressource GPUDEVICE: OAR API gives 0, generator wants null.
 # Error: Resource 2 (host=clustera-1.fakesite.grid5000.fr cpu=1 core=2 cpuset=1 gpu=1 gpudevice=0) has a mismatch for ressource GPU: OAR API gives 1, generator wants null.
diff --git a/spec/output/non_reservable_gpus_print_stdout.txt b/spec/output/non_reservable_gpus_print_stdout.txt
index b4ee4441a8d66aa198a8170c10048d67f866d668..18aac0074e878012fcb4a601c60f954517fcc126 100644
--- a/spec/output/non_reservable_gpus_print_stdout.txt
+++ b/spec/output/non_reservable_gpus_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/non_reservable_gpus_table_stdout.txt b/spec/output/non_reservable_gpus_table_stdout.txt
index 6290d46bb59c1cd946f8205030e3a99cb986d0f9..4dae2132f0b03977e6bbaf8779123512d8377d75 100644
--- a/spec/output/non_reservable_gpus_table_stdout.txt
+++ b/spec/output/non_reservable_gpus_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 1     | 2     | 1        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 1     | 3     | 2        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 1     | 4     | 3        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 1     | 5     | 4        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 1     | 6     | 5        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 1     | 7     | 6        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 1     | 8     | 7        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 2     | 9     | 8        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 2     | 10    | 9        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 2     | 11    | 10       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 2     | 12    | 11       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 2     | 13    | 12       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 2     | 14    | 13       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 2     | 15    | 14       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-1           | 2     | 16    | 15       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 3     | 17    | 0        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 3     | 18    | 1        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 3     | 19    | 2        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 3     | 20    | 3        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 3     | 21    | 4        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 3     | 22    | 5        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 3     | 23    | 6        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 3     | 24    | 7        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 4     | 25    | 8        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 4     | 26    | 9        |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 4     | 27    | 10       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 4     | 28    | 11       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 4     | 29    | 12       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 4     | 30    | 13       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 4     | 31    | 14       |      |                      | Intel Xeon Silver 4110         |                               |
-|  clustera | clustera-2           | 4     | 32    | 15       |      |                      | Intel Xeon Silver 4110         |                               |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    |      |            |                                |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/wattmeters_nil_diff_stdout.txt b/spec/output/wattmeters_nil_diff_stdout.txt
index 4c90ba0a8fe0cc85f81888e32e0a4fffb0dc4fac..9de8cd6b31470799b9aeea096c78cc508bc36a98 100644
--- a/spec/output/wattmeters_nil_diff_stdout.txt
+++ b/spec/output/wattmeters_nil_diff_stdout.txt
@@ -4,6 +4,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
diff --git a/spec/output/wattmeters_nil_print_stdout.txt b/spec/output/wattmeters_nil_print_stdout.txt
index db086ef26b15de5a2209c2e415e3873c4e806777..0a031fa1cf7d53b0fa5bf6a5bbb71a60f2504a70 100644
--- a/spec/output/wattmeters_nil_print_stdout.txt
+++ b/spec/output/wattmeters_nil_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/wattmeters_nil_table_stdout.txt b/spec/output/wattmeters_nil_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/wattmeters_nil_table_stdout.txt
+++ b/spec/output/wattmeters_nil_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/with-data_diff_stdout.txt b/spec/output/with-data_diff_stdout.txt
index 4c90ba0a8fe0cc85f81888e32e0a4fffb0dc4fac..9de8cd6b31470799b9aeea096c78cc508bc36a98 100644
--- a/spec/output/with-data_diff_stdout.txt
+++ b/spec/output/with-data_diff_stdout.txt
@@ -4,6 +4,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "core_count", 16]
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2: same modifications as above
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, eth_kavlan_count, gpu_mem
diff --git a/spec/output/with-data_print_stdout.txt b/spec/output/with-data_print_stdout.txt
index db086ef26b15de5a2209c2e415e3873c4e806777..0a031fa1cf7d53b0fa5bf6a5bbb71a60f2504a70 100644
--- a/spec/output/with-data_print_stdout.txt
+++ b/spec/output/with-data_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/with-data_table_stdout.txt b/spec/output/with-data_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/with-data_table_stdout.txt
+++ b/spec/output/with-data_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/with_disk_misconfigured_resources_properties_and_disks_diff_stdout.txt b/spec/output/with_disk_misconfigured_resources_properties_and_disks_diff_stdout.txt
index 44da3436b90c2e5b6a4740b7838691be3029cf3c..56313134fdcb7384de1b344fa8bfb9d62bf7a98d 100644
--- a/spec/output/with_disk_misconfigured_resources_properties_and_disks_diff_stdout.txt
+++ b/spec/output/with_disk_misconfigured_resources_properties_and_disks_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "NO"]
     ["+", "gpu_count", 4]
+    ["+", "gpu_mem", 10479]
     ["+", "gpu_model", "GeForce RTX 2080 Ti"]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -81,4 +83,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 32]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "NO"]
-Properties that need to be created on the fakesite server: switch, cpu_count, core_count, thread_count, chassis, eth_kavlan_count
+Properties that need to be created on the fakesite server: switch, cpu_count, core_count, thread_count, chassis, eth_kavlan_count, gpu_mem
diff --git a/spec/output/with_disk_misconfigured_resources_properties_and_disks_print_stdout.txt b/spec/output/with_disk_misconfigured_resources_properties_and_disks_print_stdout.txt
index 1592cb5b00da1db82544352cecf1bca06fdc850c..dc9cd350a61dd03ccafcf94c8955307a42d9f9da 100644
--- a/spec/output/with_disk_misconfigured_resources_properties_and_disks_print_stdout.txt
+++ b/spec/output/with_disk_misconfigured_resources_properties_and_disks_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -112,7 +113,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=6 -p core=47 -p cpuset=14 -p gpu=12 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=6 -p core=48 -p cpuset=15 -p gpu=12 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -137,6 +138,6 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=63 -p cpuset=14 -p gpu=16 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=64 -p cpuset=15 -p gpu=16 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/with_disk_misconfigured_resources_properties_and_disks_table_stdout.txt b/spec/output/with_disk_misconfigured_resources_properties_and_disks_table_stdout.txt
index 61ea618d71d84d14ff12cc4b0fa827f8828dfdd3..f2df596c2a3aaf9497110a8e048a812ca8b7fb09 100644
--- a/spec/output/with_disk_misconfigured_resources_properties_and_disks_table_stdout.txt
+++ b/spec/output/with_disk_misconfigured_resources_properties_and_disks_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 5     | 33    | 0        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 34    | 1        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 35    | 2        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 36    | 3        | 9    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 37    | 4        | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 38    | 5        | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 39    | 6        | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 5     | 40    | 7        | 10   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 41    | 8        | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 42    | 9        | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 43    | 10       | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 44    | 11       | 11   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 45    | 12       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 46    | 13       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 47    | 14       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 6     | 48    | 15       | 12   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 49    | 0        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 50    | 1        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 51    | 2        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 52    | 3        | 13   | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 53    | 4        | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 54    | 5        | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 55    | 6        | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 7     | 56    | 7        | 14   | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 57    | 8        | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 58    | 9        | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 59    | 10       | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 60    | 11       | 15   | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 61    | 12       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 62    | 13       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 63    | 14       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 8     | 64    | 15       | 16   | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 5     | 33    | 0      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 34    | 1      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 35    | 2      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 36    | 3      | Intel Xeon Silver 4110    | 9    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 37    | 4      | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 38    | 5      | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 39    | 6      | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 5     | 40    | 7      | Intel Xeon Silver 4110    | 10   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 41    | 8      | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 42    | 9      | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 43    | 10     | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 44    | 11     | Intel Xeon Silver 4110    | 11   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 45    | 12     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 46    | 13     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 47    | 14     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 6     | 48    | 15     | Intel Xeon Silver 4110    | 12   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 7     | 49    | 0      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 50    | 1      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 51    | 2      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 52    | 3      | Intel Xeon Silver 4110    | 13   | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 53    | 4      | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 54    | 5      | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 55    | 6      | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 7     | 56    | 7      | Intel Xeon Silver 4110    | 14   | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 57    | 8      | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 58    | 9      | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 59    | 10     | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 60    | 11     | Intel Xeon Silver 4110    | 15   | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 61    | 12     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 62    | 13     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 63    | 14     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 8     | 64    | 15     | Intel Xeon Silver 4110    | 16   | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/with_too_few_oar_resources_diff_stdout.txt b/spec/output/with_too_few_oar_resources_diff_stdout.txt
index 204e2f18bfbff167503b5ab9180f401410f5c472..b8924b6c734cdbe49c4b641b3df308de77c49dbe 100644
--- a/spec/output/with_too_few_oar_resources_diff_stdout.txt
+++ b/spec/output/with_too_few_oar_resources_diff_stdout.txt
@@ -7,6 +7,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
     ["+", "exotic", "NO"]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2:
     ["~", "deploy", "NO", "YES"]
@@ -16,5 +17,6 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
     ["+", "exotic", "NO"]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, chassis, eth_kavlan_count, exotic
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, chassis, eth_kavlan_count, gpu_mem, exotic
diff --git a/spec/output/with_too_few_oar_resources_print_stdout.txt b/spec/output/with_too_few_oar_resources_print_stdout.txt
index 7bae3e45844af635c51cf771797fa18f29be8b31..193c595e3fd69e082cc18d69ae71998526438659 100644
--- a/spec/output/with_too_few_oar_resources_print_stdout.txt
+++ b/spec/output/with_too_few_oar_resources_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/with_too_few_oar_resources_table_stdout.txt b/spec/output/with_too_few_oar_resources_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/with_too_few_oar_resources_table_stdout.txt
+++ b/spec/output/with_too_few_oar_resources_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/wrong_variable_type_diff_stdout.txt b/spec/output/wrong_variable_type_diff_stdout.txt
index f7b2b283ed970fa2a1191a0c389ada6cf90105e0..1d39b6101d9b8550e035e1c3408337122ccee198 100644
--- a/spec/output/wrong_variable_type_diff_stdout.txt
+++ b/spec/output/wrong_variable_type_diff_stdout.txt
@@ -7,6 +7,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
     ["+", "exotic", "NO"]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
   clustera-2:
     ["~", "eth_rate", "10", 10]
@@ -16,6 +17,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "cpu_count", 2]
     ["+", "eth_kavlan_count", 0]
     ["+", "exotic", "NO"]
+    ["+", "gpu_mem", 10479]
     ["+", "thread_count", 32]
 Error: the OAR property 'eth_rate' is a 'String' on the fakesite server and this script uses 'Integer' for this property.
-Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, chassis, eth_kavlan_count, exotic
+Properties that need to be created on the fakesite server: cpu_count, core_count, thread_count, chassis, eth_kavlan_count, gpu_mem, exotic
diff --git a/spec/output/wrong_variable_type_print_stdout.txt b/spec/output/wrong_variable_type_print_stdout.txt
index db086ef26b15de5a2209c2e415e3873c4e806777..0a031fa1cf7d53b0fa5bf6a5bbb71a60f2504a70 100644
--- a/spec/output/wrong_variable_type_print_stdout.txt
+++ b/spec/output/wrong_variable_type_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -110,7 +111,7 @@ oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='14
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='15' AND type='default'" -p cpu=2 -p core=15 -p cpuset=14 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' AND resource_id='16' AND type='default'" -p cpu=2 -p core=16 -p cpuset=15 -p gpu=4 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 FL1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
 
@@ -135,6 +136,6 @@ oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='30
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='31' AND type='default'" -p cpu=4 -p core=31 -p cpuset=14 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' AND resource_id='32' AND type='default'" -p cpu=4 -p core=32 -p cpuset=15 -p gpu=8 -p gpu_model='GeForce RTX 2080 Ti' -p gpudevice=3 # This GPU is mapped on /dev/nvidia3
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.64.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge T640' -p switch='gw-fakesite' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=8 -p cpu_count=2 -p core_count=16 -p thread_count=32 -p cputype='Intel Xeon Silver 4110' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge T640 9L1CBX2' -p eth_count=1 -p eth_kavlan_count=0 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=0 -p opa_rate=0 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=8192 -p memcpu=65536 -p memnode=131072 -p gpu_model='GeForce RTX 2080 Ti' -p gpu_count=4 -p gpu_mem=10479 -p exotic='NO' -p mic='NO' -p wattmeter='NO' -p cluster_priority=201906 -p max_walltime=86400 -p production='YES' -p maintenance='NO' -p disk_reservation_count=0
 
 echo '================================================================================'
diff --git a/spec/output/wrong_variable_type_table_stdout.txt b/spec/output/wrong_variable_type_table_stdout.txt
index ff22c49a17bfe63c3bf67626e315beb43467d6a8..10ee4bfb5efb033b28e4b4fb41f5fa40e2457210 100644
--- a/spec/output/wrong_variable_type_table_stdout.txt
+++ b/spec/output/wrong_variable_type_table_stdout.txt
@@ -1,36 +1,37 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 2     | 1        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 3     | 2        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 4     | 3        | 1    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 5     | 4        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 6     | 5        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 7     | 6        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 1     | 8     | 7        | 2    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 9     | 8        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 10    | 9        | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 11    | 10       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 12    | 11       | 3    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 13    | 12       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 14    | 13       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 15    | 14       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-1           | 2     | 16    | 15       | 4    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 17    | 0        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 18    | 1        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 19    | 2        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 20    | 3        | 5    | 0                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 21    | 4        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 22    | 5        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 23    | 6        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 3     | 24    | 7        | 6    | 1                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 25    | 8        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 26    | 9        | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 27    | 10       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 28    | 11       | 7    | 2                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 29    | 12       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 30    | 13       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 31    | 14       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-|  clustera | clustera-2           | 4     | 32    | 15       | 8    | 3                    | Intel Xeon Silver 4110         | GeForce RTX 2080 Ti           |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 2     | 1      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 3     | 2      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 4     | 3      | Intel Xeon Silver 4110    | 1    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 5     | 4      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 6     | 5      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 7     | 6      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 1     | 8     | 7      | Intel Xeon Silver 4110    | 2    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 9     | 8      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 10    | 9      | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 11    | 10     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 12    | 11     | Intel Xeon Silver 4110    | 3    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 13    | 12     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 14    | 13     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 15    | 14     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-1           | 2     | 16    | 15     | Intel Xeon Silver 4110    | 4    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 3     | 17    | 0      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 18    | 1      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 19    | 2      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 20    | 3      | Intel Xeon Silver 4110    | 5    | 0          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 21    | 4      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 22    | 5      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 23    | 6      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 3     | 24    | 7      | Intel Xeon Silver 4110    | 6    | 1          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 25    | 8      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 26    | 9      | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 27    | 10     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 28    | 11     | Intel Xeon Silver 4110    | 7    | 2          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 29    | 12     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 30    | 13     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 31    | 14     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
+| clustera    | clustera-2           | 4     | 32    | 15     | Intel Xeon Silver 4110    | 8    | 3          | GeForce RTX 2080 Ti            |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
diff --git a/spec/output/yeti_empty_diff_stdout.txt b/spec/output/yeti_empty_diff_stdout.txt
index bbace11af5891c6fcb513bbd731aa28d24658bb4..531b431fc66ffd0395da292aa79332b9409e027b 100644
--- a/spec/output/yeti_empty_diff_stdout.txt
+++ b/spec/output/yeti_empty_diff_stdout.txt
@@ -18,6 +18,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -59,6 +60,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -100,6 +102,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -141,6 +144,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "ib", "NO"]
     ["+", "ib_count", 0]
@@ -186,6 +190,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-1.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -233,6 +238,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-1.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -280,6 +286,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-1.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -327,6 +334,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-2.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -374,6 +382,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-2.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -421,6 +430,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-2.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -468,6 +478,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-3.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -515,6 +526,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-3.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -562,6 +574,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-3.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -609,6 +622,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-4.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -656,6 +670,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-4.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -703,6 +718,7 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "eth_rate", 10]
     ["+", "exotic", "YES"]
     ["+", "gpu_count", 0]
+    ["+", "gpu_mem", 0]
     ["+", "gpu_model", ""]
     ["+", "host", "clustera-4.fakesite.grid5000.fr"]
     ["+", "ib", "NO"]
@@ -727,4 +743,4 @@ Output format: [ '-', 'key', 'value'] for missing, [ '+', 'key', 'value'] for ad
     ["+", "thread_count", 128]
     ["+", "virtual", "ivt"]
     ["+", "wattmeter", "YES"]
-Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
+Properties that need to be created on the fakesite server: ip, cluster, nodemodel, switch, besteffort, deploy, virtual, cpuarch, cpucore, cpu_count, core_count, thread_count, cputype, cpufreq, disktype, chassis, eth_count, eth_kavlan_count, eth_rate, ib_count, ib_rate, ib, opa_count, opa_rate, myri_count, myri_rate, myri, memcore, memcpu, memnode, gpu_model, gpu_count, gpu_mem, exotic, mic, wattmeter, cluster_priority, max_walltime, production, maintenance, disk_reservation_count
diff --git a/spec/output/yeti_empty_print_stdout.txt b/spec/output/yeti_empty_print_stdout.txt
index e6f35aa9eaa47ba83bfc630cf722aeea4ee22446..ad6d97d2d3bc8097a21f7d32de1a13aade2f8588 100644
--- a/spec/output/yeti_empty_print_stdout.txt
+++ b/spec/output/yeti_empty_print_stdout.txt
@@ -80,6 +80,7 @@ property_exist 'memcpu' || oarproperty -a memcpu
 property_exist 'memnode' || oarproperty -a memnode
 property_exist 'gpu_model' || oarproperty -a gpu_model --varchar
 property_exist 'gpu_count' || oarproperty -a gpu_count
+property_exist 'gpu_mem' || oarproperty -a gpu_mem
 property_exist 'exotic' || oarproperty -a exotic --varchar
 property_exist 'mic' || oarproperty -a mic --varchar
 property_exist 'wattmeter' || oarproperty -a wattmeter --varchar
@@ -160,7 +161,7 @@ oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=4 -p core=63 -p cpuset=59
 oarnodesetting -a -h 'clustera-1.fakesite.grid5000.fr' -s Absent -p host='clustera-1.fakesite.grid5000.fr' -p cpu=4 -p core=64 -p cpuset=63
 echo; echo 'Setting properties for clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.19.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_model='' -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='default'" -p ip='172.16.19.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-1 on host clustera-1.fakesite.grid5000.fr:'
@@ -168,7 +169,7 @@ disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk1.clustera-1' && echo '=> disk
 disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk1.clustera-1' || oarnodesetting -a -h '' -p host='clustera-1.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-1'
 
 echo; echo 'Setting properties for disk disk1.clustera-1 on host clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-1'" -p ip='172.16.19.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-1'" -p ip='172.16.19.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-1 on host clustera-1.fakesite.grid5000.fr:'
@@ -176,7 +177,7 @@ disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk2.clustera-1' && echo '=> disk
 disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk2.clustera-1' || oarnodesetting -a -h '' -p host='clustera-1.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-1'
 
 echo; echo 'Setting properties for disk disk2.clustera-1 on host clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-1'" -p ip='172.16.19.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-1'" -p ip='172.16.19.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-1 on host clustera-1.fakesite.grid5000.fr:'
@@ -184,7 +185,7 @@ disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk3.clustera-1' && echo '=> disk
 disk_exist 'clustera-1.fakesite.grid5000.fr' 'disk3.clustera-1' || oarnodesetting -a -h '' -p host='clustera-1.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-1'
 
 echo; echo 'Setting properties for disk disk3.clustera-1 on host clustera-1.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-1'" -p ip='172.16.19.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-1.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-1'" -p ip='172.16.19.1' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGQSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-1.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-1' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -257,7 +258,7 @@ oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=127 -p cpuset=59
 oarnodesetting -a -h 'clustera-2.fakesite.grid5000.fr' -s Absent -p host='clustera-2.fakesite.grid5000.fr' -p cpu=8 -p core=128 -p cpuset=63
 echo; echo 'Setting properties for clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.19.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_model='' -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='default'" -p ip='172.16.19.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-2 on host clustera-2.fakesite.grid5000.fr:'
@@ -265,7 +266,7 @@ disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk1.clustera-2' && echo '=> disk
 disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk1.clustera-2' || oarnodesetting -a -h '' -p host='clustera-2.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-2'
 
 echo; echo 'Setting properties for disk disk1.clustera-2 on host clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-2'" -p ip='172.16.19.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-2'" -p ip='172.16.19.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-2 on host clustera-2.fakesite.grid5000.fr:'
@@ -273,7 +274,7 @@ disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk2.clustera-2' && echo '=> disk
 disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk2.clustera-2' || oarnodesetting -a -h '' -p host='clustera-2.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-2'
 
 echo; echo 'Setting properties for disk disk2.clustera-2 on host clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-2'" -p ip='172.16.19.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-2'" -p ip='172.16.19.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-2 on host clustera-2.fakesite.grid5000.fr:'
@@ -281,7 +282,7 @@ disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk3.clustera-2' && echo '=> disk
 disk_exist 'clustera-2.fakesite.grid5000.fr' 'disk3.clustera-2' || oarnodesetting -a -h '' -p host='clustera-2.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-2'
 
 echo; echo 'Setting properties for disk disk3.clustera-2 on host clustera-2.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-2'" -p ip='172.16.19.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-2.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-2'" -p ip='172.16.19.2' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGRSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-2.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-2' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -354,7 +355,7 @@ oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=12 -p core=191 -p cpuset=59
 oarnodesetting -a -h 'clustera-3.fakesite.grid5000.fr' -s Absent -p host='clustera-3.fakesite.grid5000.fr' -p cpu=12 -p core=192 -p cpuset=63
 echo; echo 'Setting properties for clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.19.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGPSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_model='' -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='default'" -p ip='172.16.19.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGPSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-3 on host clustera-3.fakesite.grid5000.fr:'
@@ -362,7 +363,7 @@ disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk1.clustera-3' && echo '=> disk
 disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk1.clustera-3' || oarnodesetting -a -h '' -p host='clustera-3.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-3'
 
 echo; echo 'Setting properties for disk disk1.clustera-3 on host clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-3'" -p ip='172.16.19.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGPSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-3'" -p ip='172.16.19.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGPSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-3 on host clustera-3.fakesite.grid5000.fr:'
@@ -370,7 +371,7 @@ disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk2.clustera-3' && echo '=> disk
 disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk2.clustera-3' || oarnodesetting -a -h '' -p host='clustera-3.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-3'
 
 echo; echo 'Setting properties for disk disk2.clustera-3 on host clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-3'" -p ip='172.16.19.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGPSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-3'" -p ip='172.16.19.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGPSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-3 on host clustera-3.fakesite.grid5000.fr:'
@@ -378,7 +379,7 @@ disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk3.clustera-3' && echo '=> disk
 disk_exist 'clustera-3.fakesite.grid5000.fr' 'disk3.clustera-3' || oarnodesetting -a -h '' -p host='clustera-3.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-3'
 
 echo; echo 'Setting properties for disk disk3.clustera-3 on host clustera-3.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-3'" -p ip='172.16.19.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGPSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-3.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-3'" -p ip='172.16.19.3' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGPSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-3.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-3' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
 
@@ -451,7 +452,7 @@ oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='cluste
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=16 -p core=255 -p cpuset=59
 oarnodesetting -a -h 'clustera-4.fakesite.grid5000.fr' -s Absent -p host='clustera-4.fakesite.grid5000.fr' -p cpu=16 -p core=256 -p cpuset=63
 echo; echo 'Setting properties for clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.19.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_model='' -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='default'" -p ip='172.16.19.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_model='' -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3
 
 echo '================================================================================'
 echo; echo 'Adding disk disk1.clustera-4 on host clustera-4.fakesite.grid5000.fr:'
@@ -459,7 +460,7 @@ disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk1.clustera-4' && echo '=> disk
 disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk1.clustera-4' || oarnodesetting -a -h '' -p host='clustera-4.fakesite.grid5000.fr' -p type='disk' -p disk='disk1.clustera-4'
 
 echo; echo 'Setting properties for disk disk1.clustera-4 on host clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-4'" -p ip='172.16.19.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:1:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk1.clustera-4'" -p ip='172.16.19.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk1.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:1:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk2.clustera-4 on host clustera-4.fakesite.grid5000.fr:'
@@ -467,7 +468,7 @@ disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk2.clustera-4' && echo '=> disk
 disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk2.clustera-4' || oarnodesetting -a -h '' -p host='clustera-4.fakesite.grid5000.fr' -p type='disk' -p disk='disk2.clustera-4'
 
 echo; echo 'Setting properties for disk disk2.clustera-4 on host clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-4'" -p ip='172.16.19.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:2:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk2.clustera-4'" -p ip='172.16.19.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk2.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:2:0' -p cpuset=-1
 
 echo '================================================================================'
 echo; echo 'Adding disk disk3.clustera-4 on host clustera-4.fakesite.grid5000.fr:'
@@ -475,6 +476,6 @@ disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk3.clustera-4' && echo '=> disk
 disk_exist 'clustera-4.fakesite.grid5000.fr' 'disk3.clustera-4' || oarnodesetting -a -h '' -p host='clustera-4.fakesite.grid5000.fr' -p type='disk' -p disk='disk3.clustera-4'
 
 echo; echo 'Setting properties for disk disk3.clustera-4 on host clustera-4.fakesite.grid5000.fr:'; echo
-oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-4'" -p ip='172.16.19.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:3:0' -p cpuset=-1
+oarnodesetting --sql "host='clustera-4.fakesite.grid5000.fr' and type='disk' and disk='disk3.clustera-4'" -p ip='172.16.19.4' -p cluster='clustera' -p nodemodel='Dell PowerEdge R940' -p switch='gw' -p besteffort='YES' -p deploy='YES' -p virtual='ivt' -p cpuarch='x86_64' -p cpucore=16 -p cpu_count=4 -p core_count=64 -p thread_count=128 -p cputype='Intel Xeon Gold 6130' -p cpufreq='2.1' -p disktype='SATA/SSD' -p chassis='Dell Inc. PowerEdge R940 6FGMSM2' -p eth_count=1 -p eth_kavlan_count=1 -p eth_rate=10 -p ib_count=0 -p ib_rate=0 -p ib='NO' -p opa_count=1 -p opa_rate=100 -p myri_count=0 -p myri_rate=0 -p myri='NO' -p memcore=12288 -p memcpu=196608 -p memnode=786432 -p gpu_count=0 -p gpu_mem=0 -p exotic='YES' -p mic='NO' -p wattmeter='YES' -p cluster_priority=201801 -p max_walltime=0 -p production='NO' -p maintenance='NO' -p disk_reservation_count=3 -p host='clustera-4.fakesite.grid5000.fr' -p available_upto=0 -p disk='disk3.clustera-4' -p diskpath='/dev/disk/by-path/pci-0000:18:00.0-scsi-0:0:3:0' -p cpuset=-1
 
 echo '================================================================================'
diff --git a/spec/output/yeti_empty_table_stdout.txt b/spec/output/yeti_empty_table_stdout.txt
index 2ef0489ccffbe60d6eeac5034f737eb3f7279a55..852b36ce56495c5347583e7bd90a76933ce3b0d4 100644
--- a/spec/output/yeti_empty_table_stdout.txt
+++ b/spec/output/yeti_empty_table_stdout.txt
@@ -1,260 +1,263 @@
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|   cluster | host                 | cpu   | core  | cpuset   | gpu  | gpudevice            | cpumodel                       | gpumodel                      |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
-|  clustera | clustera-1           | 1     | 1     | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 2     | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 3     | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 4     | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 5     | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 6     | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 7     | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 8     | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 9     | 32       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 10    | 36       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 11    | 40       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 12    | 44       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 13    | 48       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 14    | 52       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 15    | 56       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 1     | 16    | 60       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 17    | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 18    | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 19    | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 20    | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 21    | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 22    | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 23    | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 24    | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 25    | 33       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 26    | 37       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 27    | 41       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 28    | 45       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 29    | 49       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 30    | 53       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 31    | 57       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 2     | 32    | 61       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 33    | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 34    | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 35    | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 36    | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 37    | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 38    | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 39    | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 40    | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 41    | 34       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 42    | 38       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 43    | 42       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 44    | 46       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 45    | 50       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 46    | 54       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 47    | 58       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 3     | 48    | 62       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 49    | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 50    | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 51    | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 52    | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 53    | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 54    | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 55    | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 56    | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 57    | 35       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 58    | 39       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 59    | 43       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 60    | 47       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 61    | 51       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 62    | 55       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 63    | 59       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-1           | 4     | 64    | 63       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 65    | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 66    | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 67    | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 68    | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 69    | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 70    | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 71    | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 72    | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 73    | 32       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 74    | 36       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 75    | 40       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 76    | 44       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 77    | 48       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 78    | 52       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 79    | 56       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 5     | 80    | 60       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 81    | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 82    | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 83    | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 84    | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 85    | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 86    | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 87    | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 88    | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 89    | 33       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 90    | 37       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 91    | 41       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 92    | 45       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 93    | 49       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 94    | 53       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 95    | 57       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 6     | 96    | 61       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 97    | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 98    | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 99    | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 100   | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 101   | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 102   | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 103   | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 104   | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 105   | 34       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 106   | 38       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 107   | 42       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 108   | 46       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 109   | 50       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 110   | 54       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 111   | 58       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 7     | 112   | 62       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 113   | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 114   | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 115   | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 116   | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 117   | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 118   | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 119   | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 120   | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 121   | 35       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 122   | 39       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 123   | 43       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 124   | 47       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 125   | 51       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 126   | 55       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 127   | 59       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-2           | 8     | 128   | 63       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 129   | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 130   | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 131   | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 132   | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 133   | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 134   | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 135   | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 136   | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 137   | 32       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 138   | 36       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 139   | 40       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 140   | 44       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 141   | 48       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 142   | 52       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 143   | 56       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 9     | 144   | 60       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 145   | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 146   | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 147   | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 148   | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 149   | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 150   | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 151   | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 152   | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 153   | 33       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 154   | 37       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 155   | 41       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 156   | 45       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 157   | 49       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 158   | 53       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 159   | 57       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 10    | 160   | 61       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 161   | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 162   | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 163   | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 164   | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 165   | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 166   | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 167   | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 168   | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 169   | 34       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 170   | 38       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 171   | 42       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 172   | 46       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 173   | 50       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 174   | 54       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 175   | 58       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 11    | 176   | 62       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 177   | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 178   | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 179   | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 180   | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 181   | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 182   | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 183   | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 184   | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 185   | 35       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 186   | 39       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 187   | 43       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 188   | 47       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 189   | 51       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 190   | 55       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 191   | 59       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-3           | 12    | 192   | 63       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 193   | 0        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 194   | 4        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 195   | 8        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 196   | 12       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 197   | 16       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 198   | 20       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 199   | 24       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 200   | 28       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 201   | 32       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 202   | 36       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 203   | 40       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 204   | 44       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 205   | 48       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 206   | 52       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 207   | 56       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 13    | 208   | 60       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 209   | 1        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 210   | 5        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 211   | 9        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 212   | 13       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 213   | 17       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 214   | 21       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 215   | 25       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 216   | 29       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 217   | 33       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 218   | 37       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 219   | 41       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 220   | 45       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 221   | 49       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 222   | 53       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 223   | 57       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 14    | 224   | 61       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 225   | 2        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 226   | 6        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 227   | 10       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 228   | 14       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 229   | 18       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 230   | 22       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 231   | 26       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 232   | 30       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 233   | 34       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 234   | 38       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 235   | 42       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 236   | 46       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 237   | 50       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 238   | 54       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 239   | 58       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 15    | 240   | 62       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 241   | 3        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 242   | 7        |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 243   | 11       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 244   | 15       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 245   | 19       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 246   | 23       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 247   | 27       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 248   | 31       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 249   | 35       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 250   | 39       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 251   | 43       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 252   | 47       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 253   | 51       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 254   | 55       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 255   | 59       |      |                      | Intel Xeon Gold 6130           |                               |
-|  clustera | clustera-4           | 16    | 256   | 63       |      |                      | Intel Xeon Gold 6130           |                               |
-+---------- + -------------------- + ----- + ----- + -------- + ---- + -------------------- + ------------------------------ + ------------------------------+
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| cluster     | host                 | cpu   | core  | cpuset | cpumodel                  | gpu  | gpudevice  | gpumodel                       |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-1           | 1     | 1     | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 2     | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 3     | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 4     | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 5     | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 6     | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 7     | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 8     | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 9     | 32     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 10    | 36     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 11    | 40     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 12    | 44     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 13    | 48     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 14    | 52     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 15    | 56     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 1     | 16    | 60     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 17    | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 18    | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 19    | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 20    | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 21    | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 22    | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 23    | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 24    | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 25    | 33     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 26    | 37     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 27    | 41     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 28    | 45     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 29    | 49     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 30    | 53     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 31    | 57     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 2     | 32    | 61     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 33    | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 34    | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 35    | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 36    | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 37    | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 38    | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 39    | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 40    | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 41    | 34     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 42    | 38     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 43    | 42     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 44    | 46     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 45    | 50     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 46    | 54     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 47    | 58     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 3     | 48    | 62     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 49    | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 50    | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 51    | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 52    | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 53    | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 54    | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 55    | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 56    | 31     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 57    | 35     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 58    | 39     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 59    | 43     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 60    | 47     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 61    | 51     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 62    | 55     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 63    | 59     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-1           | 4     | 64    | 63     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-2           | 5     | 65    | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 66    | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 67    | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 68    | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 69    | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 70    | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 71    | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 72    | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 73    | 32     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 74    | 36     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 75    | 40     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 76    | 44     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 77    | 48     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 78    | 52     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 79    | 56     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 5     | 80    | 60     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 81    | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 82    | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 83    | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 84    | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 85    | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 86    | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 87    | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 88    | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 89    | 33     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 90    | 37     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 91    | 41     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 92    | 45     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 93    | 49     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 94    | 53     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 95    | 57     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 6     | 96    | 61     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 97    | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 98    | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 99    | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 100   | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 101   | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 102   | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 103   | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 104   | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 105   | 34     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 106   | 38     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 107   | 42     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 108   | 46     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 109   | 50     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 110   | 54     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 111   | 58     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 7     | 112   | 62     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 113   | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 114   | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 115   | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 116   | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 117   | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 118   | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 119   | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 120   | 31     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 121   | 35     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 122   | 39     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 123   | 43     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 124   | 47     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 125   | 51     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 126   | 55     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 127   | 59     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-2           | 8     | 128   | 63     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-3           | 9     | 129   | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 130   | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 131   | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 132   | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 133   | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 134   | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 135   | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 136   | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 137   | 32     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 138   | 36     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 139   | 40     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 140   | 44     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 141   | 48     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 142   | 52     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 143   | 56     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 9     | 144   | 60     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 145   | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 146   | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 147   | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 148   | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 149   | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 150   | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 151   | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 152   | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 153   | 33     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 154   | 37     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 155   | 41     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 156   | 45     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 157   | 49     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 158   | 53     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 159   | 57     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 10    | 160   | 61     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 161   | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 162   | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 163   | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 164   | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 165   | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 166   | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 167   | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 168   | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 169   | 34     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 170   | 38     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 171   | 42     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 172   | 46     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 173   | 50     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 174   | 54     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 175   | 58     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 11    | 176   | 62     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 177   | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 178   | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 179   | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 180   | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 181   | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 182   | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 183   | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 184   | 31     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 185   | 35     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 186   | 39     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 187   | 43     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 188   | 47     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 189   | 51     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 190   | 55     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 191   | 59     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-3           | 12    | 192   | 63     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+
+| clustera    | clustera-4           | 13    | 193   | 0      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 194   | 4      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 195   | 8      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 196   | 12     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 197   | 16     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 198   | 20     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 199   | 24     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 200   | 28     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 201   | 32     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 202   | 36     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 203   | 40     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 204   | 44     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 205   | 48     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 206   | 52     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 207   | 56     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 13    | 208   | 60     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 209   | 1      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 210   | 5      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 211   | 9      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 212   | 13     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 213   | 17     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 214   | 21     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 215   | 25     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 216   | 29     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 217   | 33     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 218   | 37     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 219   | 41     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 220   | 45     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 221   | 49     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 222   | 53     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 223   | 57     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 14    | 224   | 61     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 225   | 2      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 226   | 6      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 227   | 10     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 228   | 14     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 229   | 18     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 230   | 22     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 231   | 26     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 232   | 30     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 233   | 34     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 234   | 38     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 235   | 42     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 236   | 46     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 237   | 50     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 238   | 54     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 239   | 58     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 15    | 240   | 62     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 241   | 3      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 242   | 7      | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 243   | 11     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 244   | 15     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 245   | 19     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 246   | 23     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 247   | 27     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 248   | 31     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 249   | 35     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 250   | 39     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 251   | 43     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 252   | 47     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 253   | 51     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 254   | 55     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 255   | 59     | Intel Xeon Gold 6130      |      |            |                                |
+| clustera    | clustera-4           | 16    | 256   | 63     | Intel Xeon Gold 6130      |      |            |                                |
++-------------+----------------------+-------+-------+--------+---------------------------+------+------------+--------------------------------+