-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MEMPROFILE is broken #12840
Labels
GC
Garbage collector
Comments
MEMPROFILE has been broken for some time IIRC. Feel free to make it work again once you've figured out the allocator :-) |
carnaval
changed the title
Compilation errors observed after enabling profiling options
MEMPROFILE is broken
Aug 29, 2015
Corresponding post to mailing list: https://groups.google.com/d/msg/julia-users/fHS1G_ryDRU/vPUjBcTcBwAJ |
vtjnash
added a commit
that referenced
this issue
Aug 27, 2020
As suggested recently on the issues list. Fixes #12840
vtjnash
added a commit
that referenced
this issue
Aug 27, 2020
As suggested recently on the issues list. Fixes #12840
vtjnash
added a commit
that referenced
this issue
Aug 28, 2020
As suggested recently on the issues list. Fixes #12840
simeonschaub
pushed a commit
to simeonschaub/julia
that referenced
this issue
Aug 29, 2020
As suggested recently on the issues list. Fixes JuliaLang#12840
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi All,
I am working on building/porting Julia on ppc64le architecture. I am using Ubuntu 14.10 on top of ppc64le hardware, while compiling Julia code (master branch) I was getting segmentation fault, I am able to resolve this segmentation fault by turning on
MEMDEBUG
flag fromsrc/options.h
file.I decided to work more this issue and try to find out root cause of segmentation fault, so I started studying/understanding memory management scheme of Julia.
To understanding GC and de-allocation mechanism I turn on profiling options
MEMPROFILE
,GC_TIME
fromoptions.h
file (by default they are commented out I uncomment those) but when I try to compile code with these profiling flags on julia compilation (make debug) gets failed.Below compilation errors I observed after enabling,
GC_TIME
flagMEMPROFILE
flagMy Machine details are:
Linux 3.16.0-30-generic #40-Ubuntu SMP ppc64le ppc64le ppc64le GNU/Linux
-Mahesh
The text was updated successfully, but these errors were encountered: