search for: jrfonseca

Displaying 11 results from an estimated 11 matches for "jrfonseca".

Did you mean: jfonseca
2012 Jan 10
1
[LLVMdev] How to free memory of JIT'd function
...9;ve done; or tweak the source to use ordinay allocators instead of pool allocators (but this can't be done blindly, as in several cases LLVM code relies on the pool to managing the objective time lifetimes). Jose [1] I'd suggest you to try your sample against http://cgit.freedesktop.org/~jrfonseca/llvm/log/?h=backports_26 ----- Original Message ----- > Hi, > > I put the sample code and a brief analysis using Valgrind to GitHub > in order to make my problem clear. > https://github.com/naosuke/how-to-free-memory-of-JIT-function > The Valgrind heap profiler indicates memory...
2011 Oct 08
0
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...est.c -O3 -Xclang -load -Xclang lib/LLVMPolly.so -mllvm -enable-polly-openmp -lgomp This will automatically OpenMP parallelize your code. (Remember for all this LLVM/Clang/Polly need to be built together such that they are in sync and .so loading works) Cheers Tobi [1] http://code.google.com/p/jrfonseca/wiki/XDot
2011 May 27
0
[LLVMdev] LLVM teaching materials
...is a long > time and now moved to xdot.py [1]. I like it a lot better. If you put it > in your path at least the cmake build of LLVM will automatically use it. > (It needs to be in the path, before you run the configure) > > Cheers > Tobi > > > [1]http://code.google.com/p/jrfonseca/wiki/XDot > > > >> It would be great to create a svn branch to share slides for such a course. > > > > Definitely. Such teaching materials would be very useful. > > > > Cheers, > > Christian > > _______________________________________________ &gt...
2012 Feb 16
1
[LLVMdev] Your LLVM email
I believe it's "Dotty", I simply output "opt -view-regions-only". On Thu, Feb 16, 2012 at 8:22 AM, Schuster, Vince J <vinces at lanl.gov> wrote: > Hi Ryan, > > wrt your llvm email. What do you use to get a visual > display of your .obj file? > > thanks, > Vince Schuster > > > ------------------------------ > > Message: 2 >
2011 Oct 07
1
[LLVMdev] How to make Polly ignore some non-affine memory accesses
I add also the output of these commands: [hades at artemis examples]$ ./compile_ex.sh super_simple_loop Printing analysis 'Polly - Detect Scops in functions' for function 'main': [hades at artemis examples]$ modifying it in : #include <stdio.h> int main() { int A[1024]; int j, k=10; for (j = 0; j < 1024; j++) A[j] = k;
2011 May 24
1
[LLVMdev] LLVM teaching materials
On 28.02.2011, at 15:44, Tobias Grosser wrote: > On 02/28/2011 05:27 AM, Christian Plessl wrote: >> Hi everyone >> >> I am teaching a lecture on hardware/software codesign which, though not a dedicated compiler course, covers quite a bit of compiler related contents (general introduction, intermediate code, code generation). >> >> I'm currently considering
2012 Jan 05
0
[LLVMdev] How to free memory of JIT'd function
Hi, I put the sample code and a brief analysis using Valgrind to GitHub in order to make my problem clear. https://github.com/naosuke/how-to-free-memory-of-JIT-function The Valgrind heap profiler indicates memory leaking but I don't get what is wrong with the way to free memory. If someone could please offer some advice/suggestion on this, I would really appreciate it. Best, Naosuke On
2011 Dec 29
2
[LLVMdev] How to free memory of JIT'd function
Hi, I'm testing how to free memory of a JIT'd function. I thought ExecutionEngine::freeMachineCodeForFunction() and Function::eraseFromParent() would work and did a test with the following sample code. But I found that the memory usage of the process is constantly growing as the while loop goes. Could someone shed light on this please? Here is the code. int main(int argc, char **argv) {
2015 Nov 19
7
[Bug 93004] New: Guild Wars 2 crash on nouveau DX11 cards
https://bugs.freedesktop.org/show_bug.cgi?id=93004 Bug ID: 93004 Summary: Guild Wars 2 crash on nouveau DX11 cards Product: Mesa Version: git Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee: nouveau at
2011 Oct 03
4
[LLVMdev] How to make Polly ignore some non-affine memory accesses
Hi Tobias, thanks for the answer. I'll try to give a look to the code you pointed me to , and I'll try to make the modification myself. I'm new to LLVM and Polly, but the code of both seem clean and understandable, so I hope to be able to do it myself. In case I'll ask here for support :) Marcello 2011/10/1 Tobias Grosser <tobias at grosser.es>: > On 10/01/2011 03:26
2011 Oct 22
5
[LLVMdev] How to make Polly ignore some non-affine memory accesses
...mllvm > -enable-polly-openmp -lgomp > > This will automatically OpenMP parallelize your code. > > (Remember for all this LLVM/Clang/Polly need to be built together such > that they are in sync and .so loading works) > > Cheers > Tobi > > [1] http://code.google.com/p/jrfonseca/wiki/XDot > > > >