Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Nmt Wizard Docker | 38 | a month ago | 3 | mit | Python | |||||
Dockerized NMT frameworks for nmt-wizard | ||||||||||
Nmt | 14 | 5 years ago | 13 | mit | JavaScript | |||||
Network mapping tool | ||||||||||
Chapter7 | 2 | 4 years ago | Python | |||||||
Chapter 7: Recurrent Neural Networks | ||||||||||
Docker Centos Jemalloc | 2 | 4 years ago | n,ull | apache-2.0 | Dockerfile | |||||
This is docker image for diagnostic native memory leaks in Java |
The docker image intended for debugging native memory leaks.
Configure Java to use jemalloc using LD_PRELOAD.
LD_PRELOAD="/usr/local/lib/libjemalloc.so"
Enable profiling using MALLOC_CONF.
MALLOC_CONF="prof_leak:true,prof:true,lg_prof_interval:25,lg_prof_sample:18,prof_prefix:/tmp/jeprof"
Use jeprof to produce a text report or a nice graph over the allocations eventually the leak should stand out.
jeprof --svg /tmp/jeprof.* > jeprof-report.svg
jeprof --text /tmp/jeprof.* > jeprof.log
docker run -ti --rm aukhatov/centos-jemalloc:8u191b09