I am implementing a online judge in python. The judge is to run on a UNIX machine. To enforce memory limits I am using ulimit and to run a program I am using subprocess.Popen() . I want to calculate the exact memory usage. How can I do so?
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 165 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
I am implementing a online judge in python. The judge is to run on a UNIX machine. To enforce memory limits I am using ulimit and to run a program I am using subprocess.Popen() . I want to calculate the exact memory usage. How can I do so?
Name |
---|
Use
resource.getrusage()
:http://docs.python.org/3/library/resource.html#resource.getrusage
The maximum used memory is
ru_maxrss
.I used ~~~~~
p = subprocess.Popen(cmd, shell=True,stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print getrusage(resource.RUSAGE_CHILDREN).ru_maxrss
~~~~~but the output is always zero am I doing something wrong. cmd is the command to be executed.
You need to wait for the child first: http://pubs.opengroup.org/onlinepubs/9699919799/functions/getrusage.html
Okay.. Now I am using
~~~~~
But still I am getting about the same value(~3430) for any program that I am executing. But the programs: https://ideone.com/KK1rak and http://ideone.com/3HfV9f take different memory according to ideone.
That is because you measure maxrss of the shell process and not of your program. You have to use
shell=False
.Also, it seems that resource usage is cumulative, so if you want to run multiple programs and obtain individual data about them, you'd have to fork a Python process for each time.
I changed to this.
with open('in.txt','r') as infile, open('out.txt', 'w') as outfile:
Res= getrusage(resource.RUSAGE_CHILDREN)
print Res.ru_maxrss
Still I am getting a constant value(~5060).
Now it seems you forgot the wait... This works for me:
EDIT: I did not notice you changed
Popen
tocheck_call
, it will wait for the process indeed.Maybe you could take a look at this opensource online judge (written in Python) and see how they do it :)