Displaying 20 results from an estimated 4000 matches similar to: "[LLVMdev] Decoupled software pipelining (DSWP) in LLVM"
2012 Feb 20
2
[LLVMdev] stack dump
0
down vote
favorite
[http://stackoverflow.com/questions/9354312/llvm-2-8-dswp-core-dump-linux#]
share [g+]
share [fb]
share [tw]
i new in llvm.i just compile google code and got this error.
"
Stack dump:
0. Program arguments: opt -load
/home/vahid/mywork/llvm-2.8/Release/lib/DSWP.so -dswp obj.o -o out.o
1. Running pass 'Function Pass Manager'
2009 Apr 10
1
[LLVMdev] Pass Manager Restriction?
On Fri, Apr 10, 2009 at 5:24 PM, Devang Patel <dpatel at apple.com> wrote:
> ... because usually a module pass operates on entire module (e.g.
> inliner) and it does not require information specific to a function.
> If your pass need info collected by a function pass then why not
> structure your pass as a function pass and run it for all function in
> a module ?
I very much
2013 Apr 29
0
[LLVMdev] GSOC Proposal: Implement Decoupled Software Pipeline
Hello,
below is the first draft of my proposal for GSoC. Any comments/advices
are apreciated.
# Implement Decoupled Software Pipeline (DSWP)
-------------------------------------------------------------------------------
# Abstract
-------------------------------------------------------------------------------
The goal of this project is to implement the automatic parallelization
technique
2012 Feb 20
0
[LLVMdev] stack dump
Hi Vahid, I suggest you use a more recent version. The latest version is 3.0.
Ciao, Duncan.
On 20/02/12 09:27, vahid eslami wrote:
>
> 0 down vote favorite
> <http://stackoverflow.com/questions/9354312/llvm-2-8-dswp-core-dump-linux#>
> share [g+] share [fb] share [tw]
>
> i new in llvm.i just compile google code and got this error. " Stack dump: 0.
> Program
2011 Sep 19
0
[LLVMdev] code generation
Hi, neda
> But for final step and code generation, I don't have any idea and
> information to assign partitions and communications to threads. and I stop
> in this position. Unfortunately I don’t have enough time and I am under
> force to complete the project.
What you want to do is pretty much like what DSWP does, see
http://liberty.princeton.edu/Research/DSWP/
What
2011 Sep 19
2
[LLVMdev] code generation
I am MSc student and my thesis subject is "parallelization of sequential
program in thread level to run on multi-core processors". I want
automatically parallelize sequential program in thread level to run on
multi-core processors with software pipelining.
I've use LLVM to code analysis and translate code to IR, I could extract PDG
graph form IR code and convert it to SCCDAG and
2011 Oct 13
6
[LLVMdev] BasicBlock succ iterator
Hi, All
I want to implement DSWP Which is used for parallelization of loops. For
this purpose, the loop was replaced with a new basic block in main function.
And new functions were created and basic blocks of Loop assigned to them.I
have checked blocks and branches for Succ and Pred relation and I have not
found any problems.
However I get the following error:
*
**opt:
2011 Sep 20
2
[LLVMdev] code generation
I've study their work carefully.
My problem is the implementation of threads in llvm after partitionning. I
want to have information about how to implement producer/consumer thread in
llvm.
I do not know where I should start in llvm for code generation and create
thread and insert produce and consume statement .
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Apr 10
0
[LLVMdev] Pass Manager Restriction?
On Apr 10, 2009, at 12:42 PM, Joseph Blomstedt wrote:
> Good to know. I was referencing a local copy of 2.3 docs which didn't
> include the "does not require any module passes" statement. It appears
> the docs were changed two days before 2.4 was released in November. I
> suppose I should update my docs more often.
>
> Are there any plans to change this
2009 Apr 10
2
[LLVMdev] Pass Manager Restriction?
Good to know. I was referencing a local copy of 2.3 docs which didn't
include the "does not require any module passes" statement. It appears
the docs were changed two days before 2.4 was released in November. I
suppose I should update my docs more often.
Are there any plans to change this restriction, or any best practices
to get similar behavior? Since immutable pass is a subclass
2013 Apr 19
0
[LLVMdev] GSOC Proposals Questions
Hello,
my name is César I'm PhD student at UNICAMP-Brasil. I'm considering
submitting a proposal to participate in GSOC, however I would like to
hear your comments before writing the proposal:
These are the topics I'm considering to write:
- Implement DSWP[1]: The proposal will be to implement Decoupled
Software Pipeline as a pass in the LLVM-opt. To do this many analysis
will be
2009 Dec 17
0
[LLVMdev] Help adding the Bullet physics sdk benchmark to the LLVM test suite?
Hello, Erwin
> So if you port this SSE code to another platform (Linux, Altivec,
> NEON), you could contribute it back to Bullet?
I believe this should work as-is on linux. Am I missing something?
> optimizations, but haven't contributed this back.
> This NEON/VFP, part of the an open source iPhone project, could be a
> starting point for this:
> http://tinyurl.com/y9gv3e8
2008 May 05
2
axis and tick widths decoupled (especially in rugs!)
Hi!
(a complete newby, but will not give up easily!)
I was wondering if there is any way to decouple the axis and tick mark
widths? As I understand they are both controlled by the lwd setting, and
cannot be controlled independently? For example I might want to create major
and minor ticks, which I now know how to do by superimposing two axes with
different at settings, but what if I also wanted
2006 Aug 01
8
Decoupled observers for controllers?
In the Rails Recipes book the recipe "Keeping track of who did what"
explains how to do decoupled observing of models.
In my application I''d like to do a similar thing but watching the
controllers. For example, when somebody hits the login method of the
Security controller, I''d like to make a note of it. In this case I
could observe the User model and watch for
2010 Oct 11
2
filled.contour: colour key decoupled from main plot?
Dear R colleagues,
I am trying to plot some geophysical data as a filled contour on a continent map and so far the guidance from the R-help archives has been invaluable. The only bit that still eludes me is the colour key (legend) coming with filled.contour:
I prefer to generate my own colour palette, mainly based on the quantiles of tenths of the data in order to capture the whole range (of
2009 Dec 16
4
[LLVMdev] Help adding the Bullet physics sdk benchmark to the LLVM test suite?
The linux builds are not using SSE right now, but the vector data is
16-byte aligned on all platforms.
So if you port this SSE code to another platform (Linux, Altivec,
NEON), you could contribute it back to Bullet?
The most interesting SSE part is the innerloop of the constraint
solver: http://tinyurl.com/ydoapct
Some developers replaced some linear algebra functions (in
Bullet/LinearMath) with
2004 Jun 10
0
Thank You for Contacting Princeton University
Thank you for contacting Princeton University. This is an automated response. Please do not reply to this message. The links below include answers to the most frequently asked questions, as well as a feedback form on the University Web site.
Admission and financial aid information is available at http://kb.princeton.edu/2900
Visitors to campus can find information at
2004 Aug 06
0
A few Newbie Questions on libwrap
Hello all,
I have been having some trouble getting my Icecast server and IceS
streamer up and running properly. I have successfully compiled both
(Icecast 1.3.10 and IceS 0.0.1beta5) with libwrap and encrypt enabled.
I can start up Icecast fine, with the following logged messages on
startup:
Icecast Version 1.3.10 Initializing...
Icecast comes with NO WARRANTY, to the extent permitted by law.
2020 Jun 02
2
Improve hot cold splitting to aggressively outline small blocks
Hello Tobias,
Thank you for the suggestion! Aditya also mentioned this. I will look into
it.
Best regards,
Ruijie
Ruijie Fang
Email: ruijief at princeton.edu
On Tue, Jun 2, 2020 at 12:48 PM Tobias Hieta <tobias at plexapp.com> wrote:
> Hello Ruijie,
>
> One other workload that would be interesting to test might be clang
> itself. Building clang with PGO information is a
2004 Aug 06
4
A few Newbie Questions on libwrap
On Tue, 17 Apr 2001, Andrew M. Wu wrote:
> Hello all,
>
> I have been having some trouble getting my Icecast server and IceS
> streamer up and running properly. I have successfully compiled both
> (Icecast 1.3.10 and IceS 0.0.1beta5) with libwrap and encrypt enabled.
>
> I can start up Icecast fine, with the following logged messages on
> startup:
>
> Icecast