This repository was archived by the owner on Dec 16, 2022. It is now read-only.
forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmemtest.jl
92 lines (73 loc) · 2.6 KB
/
memtest.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#
# immutable RUsage
# ru_utime_sec::Clong # user CPU time used
# ru_utime_usec::Clong # user CPU time used
# ru_stime_sec::Clong # system CPU time used
# ru_stime_usec::Clong # system CPU time used
# ru_maxrss::Clong # maximum resident set size
# ru_ixrss::Clong # integral shared memory size
# ru_idrss::Clong # integral unshared data size
# ru_isrss::Clong # integral unshared stack size
# ru_minflt::Clong # page reclaims (soft page faults)
# ru_majflt::Clong # page faults (hard page faults)
# ru_nswap::Clong # swaps
# ru_inblock::Clong # block input operations
# ru_oublock::Clong # block output operations
# ru_msgsnd::Clong # IPC messages sent
# ru_msgrcv::Clong # IPC messages received
# ru_nsignals::Clong # signals received
# ru_nvcsw::Clong # voluntary context switches
# ru_nivcsw::Clong # involuntary context switches
# end
#
# RUSAGE_SELF::Cint is defined a 0 both on Mac and Linux....
#
# ru1 = Array(RUsage, 1)
# ru2 = Array(RUsage, 1)
#
# diff = ru2[1].ru_maxrss - ru1[1].ru_maxrss
# WARN = (diff > 1000) ? "WARNING" : ""
#
# ccall(:getrusage, Cint, (Cint, Ptr{Void}), 0, ru1)
# ccall(:getrusage, Cint, (Cint, Ptr{Void}), 0, ru2)
function get_vmsize()
lines = split(open(readall, "/proc/self/status"), "\n")
vm_line = split(filter(x->beginswith(x, "VmSize"), lines)[1])
vmsize = int(vm_line[2])
if uppercase(vm_line[3]) == "KB"
vmunits = 1
elseif uppercase(vm_line[3]) == "MB"
vmunits = 1000
else
error("Unknown unit $(vm_line[3])")
end
vmsize * vmunits
end
function run_mtest(name, testf)
print ("Testing $name...")
for i in 1:2
print ("priming process...")
testf() # priming
end
vm1 = get_vmsize()
println ("monitored run...")
testf() # actual run
vm2 = get_vmsize()
diff = vm2 - vm1
WARN = (diff > 1000) ? "<===================================== WARNING" : ""
println("Memory Test ($name) : VMSize difference : $diff KB $WARN")
end
function mtest_create_strings()
for i in 1:10^8
string("$i")
end
gc()
end
run_mtest("create_strings", () -> mtest_create_strings())
function mtest_remotecall_fetch()
for i in 1:10^5
remotecall_fetch(1, myid)
end
gc()
end
run_mtest("remotecall_fetch", () -> mtest_remotecall_fetch())