3~8個のcpuのうち空いているものを使いたい時は以下のように書けばいいらしい executable = foo.exe # Only interested in slots with 3 to 8 CPUs if they # are static or dynamic. If a slot is partitionable, # make sure it has at least 3 cpus. requirements = Cpus >= 3 && (PartitionableSlot || Cpus <= 8) # Request up to 8 cpus out of a parti…