Blog Archive

Wednesday, June 15, 2016

[kaldi] unknown resource "ram_free"



Question: Unable to run job: unknown resource "ram_free"

Solution: (It works)

The ram_free resource is not something that GridEngine installations come
with by default. It's something we installed locally at JHU, and that BUT
also has, for managing the memory requirements of jobs.
You can just remove the ",ram_free=2G" or whatever part of the $cmd
variable.
Or alternatively, to add it to your queue configuration, you can do
qconf -sc
and add the line
ram_free ram_free MEMORY <= YES YES 1G
0
and then for each machine in your queue you can do
qconf -me that_machine_name
and add something to the complex_values string, e.g. in our case one
particular machine has:
complex_values ram_free=132299M
It probably supports G also.
You can do as follows to work out how much memory the machine has:
grep MemTotal /proc/meminfo
MemTotal: 132300036 kB
Dan
'via Blog this'

No comments:

Post a Comment