Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] Contract position for multithreaded LLVM"
2009 Feb 03
3
[LLVMdev] multithreaded applications
Hi all:
I am working on a project using llvm and we need to deal with multithreaded
applications. I wanted to know if there was a C front end for llvm that
could parse multithreaded applications? I tried llvm-gcc (4.2) and could not
get it to work. Is there an extra parameter that I need to pass or something
?
Thanks a lot for your help.
Regards
--
-- Aparna
Graduate Student
Department
2009 Feb 03
0
[LLVMdev] multithreaded applications
On Tue, Feb 3, 2009 at 12:33 PM, aparna kotha <kotha.aparna at gmail.com> wrote:
> Hi all:
>
> I am working on a project using llvm and we need to deal with multithreaded
> applications. I wanted to know if there was a C front end for llvm that
> could parse multithreaded applications? I tried llvm-gcc (4.2) and could not
> get it to work. Is there an extra parameter that I
2010 Oct 05
2
[LLVMdev] Multithreaded code generation
Hi
I want to use LLVM to automatically translate sequential codes to multithreaded codes for execution on multicore processors.
How should I start?
Best Regards.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101004/db9ce7bf/attachment.html>
2015 Mar 10
0
[PATCH] v2v: Add the test-harness used by external tests.
See the new man page virt-v2v-test-harness(1) added in this commit for
details of this library/harness, and also how to get the external
tests.
---
.gitignore | 6 +
Makefile.am | 3 +
README | 2 +
configure.ac | 8 +-
po-docs/ja/Makefile.am
2010 Oct 05
0
[LLVMdev] Multithreaded code generation
Hi Hamed,
> I want to use LLVM to automatically translate sequential codes to multithreaded
> codes for execution on multicore processors.
> How should I start?
currently LLVM does not have support for anything like this as far as I know.
But perhaps you meant that you want to implement it, and are asking for advice?
Ciao,
Duncan.
2010 Oct 05
3
[LLVMdev] Multithreaded code generation
Hi
yes, I'm asking for any advice, I want to implement multithreaded code generator in LLVM.
tnx
--- On Tue, 10/5/10, Duncan Sands <baldrick at free.fr> wrote:
From: Duncan Sands <baldrick at free.fr>
Subject: Re: [LLVMdev] Multithreaded code generation
To: llvmdev at cs.uiuc.edu
Date: Tuesday, October 5, 2010, 10:50 AM
Hi Hamed,
> I want to use LLVM to automatically
2010 Oct 05
0
[LLVMdev] Multithreaded code generation
On 10/05/2010 09:42 AM, hamed hamzehi wrote:
> Hi
> yes, I'm asking for any advice, I want to implement multithreaded code
> generator in LLVM.
> tnx
Hi,
this generally depends which kind of code you want to multithread,
because generally this is a difficult problem.
However, if you limit yourself for the moment to loops that fit into the
polyhedral model, you can take
2014 Apr 17
3
[LLVMdev] multithreaded performance disaster with -fprofile-instr-generate (contention on profile counters)
On Apr 17, 2014, at 11:09 AM, Xinliang David Li <xinliangli at gmail.com> wrote:
>
> On Thu, Apr 17, 2014 at 10:58 AM, Duncan P. N. Exon Smith <dexonsmith at apple.com> wrote:
>
> On 2014-Apr-17, at 10:38, Xinliang David Li <xinliangli at gmail.com> wrote:
>
> >
> > Another idea is to use stack local counters per function -- synced up with global
2010 Oct 05
2
[LLVMdev] Multithreaded code generation
Hi,
In fact I have some theory on instruction level parallelism( i have a partitioning algorithm), then first of all, i want to generate a multithreaded code from LLVM IR (in assembly level) with a given partitioning. My problem is how can i use a thread library(like Pthread) or OS system calls in LLVM IR to create and manage threads?
--- On Tue, 10/5/10, Tobias Grosser <grosser at
2009 May 12
2
Multithreaded SAMBA/Winbind
Hi.
We have a configuration and audit application called Tripwire Enterprise
(7.5) that is running on a Red Enterprise Linux 5.2 server. On this
server, we are using winbind (samba version 3.0.33) for authentication
(against Windows AD). When we try to run a configuration check on users
and permissions we get an error that there is a problematic frame : C
[libnss_winbind.so.2+0x129f] . I
2012 Oct 13
1
Multithreaded code in .Call interface
Hi,
I was wondering if it is safe to call R functions and/or R BLAS functions
from within multithreaded C/C++ code(.Call interface)? It is not in case
with MATLAB. I was experimenting using pthreads and OpenMP.
Thanks,
Rob
[[alternative HTML version deleted]]
2009 Feb 27
1
[LLVMdev] Recommended pattern to use LLVM JIT in a multithreaded application
Since my last question was a bit long, I'll keep this short:
What is the "best practice" way to use LLVM JIT in a multithreaded
application? I've noticed there can only be one JIT ExecutionEngine present
in the application, and putting the engine in a singleton instance doesn't
seem to work.
Thanks,
Eric Yew
-------------- next part --------------
An HTML attachment was
2009 Jul 01
1
[LLVMdev] JIT function insertion/creation in multithreaded setting
I have been looking at the possibility of writing a multithreaded server with the LLVM JIT acting as a key part of the runtime system. In this kind of setting it may entirely be possible for the compiler to be active on to separate threads. I am curious in this sort of situation which entities I would have to protect with a mutex. Is it just certain functions in the Module class?
Thanks in
2008 May 06
3
Proof-of-concept multithreaded FLAC encoder
Hey FLAC devs,
I managed to hack out a proof-of-concept multithreaded FLAC encoder
based on the example libFLAC one. It turned out to be fairly
straightforward to get near-linear speedup; I can encode a 636 MB wave
file in 6.8s with 8 threads on an 8-core 3.0 GHz Xeon vs. 31.4s with a
single thread.
Basically I mmap() the input file, divide up the mmap()ed region into
nearly equal pieces,
2012 Oct 08
4
[LLVMdev] "Multithreaded LLVM" in "Writing an LLVM Pass"
Hello all,
I have read the chapter "Writing an LLVM Pass" and noticed that there is a
topic "Multithreaded LLVM". However I have no idea about this. I am
wondering
to know whether the goal of this extension is:
1. Multiple threads handle different modules (Thread : Module = 1 : 1)
or
2. Multiple threads handle one module (Thread : Module = N : 1)
Thanks a lot
--------------
2014 Apr 17
2
[LLVMdev] multithreaded performance disaster with -fprofile-instr-generate (contention on profile counters)
Chandler Carruth <chandlerc at google.com> writes:
> Having thought a bit about the best strategy to solve this, I think we should
> use a tradeoff of memory to reduce contention. I don't really like any of the
> other options as much, if we can get that one to work. Here is my specific
> suggestion:
>
> On Thu, Apr 17, 2014 at 5:21 AM, Kostya Serebryany <kcc at
2020 Mar 30
3
Multithreaded encoding?
I am interested in being able to encode a single Opus stream using
several CPU cores.
I get a raw audio input and "opusenc" can transcode it at 1200% speed
(Raspberry PI 3B+). It saturates a single CPU core, but the other three
are idle.
Is out there any project to add multithreading options to "opusenc", or
something in that line?
Looking around, I have found this:
2009 Feb 03
2
[LLVMdev] multithreaded applications
I am using pthreads.
I was also wondering what will the llvm IR be for pthreads ?
On Tue, Feb 3, 2009 at 3:51 PM, Bill Wendling <isanbard at gmail.com> wrote:
> On Tue, Feb 3, 2009 at 12:33 PM, aparna kotha <kotha.aparna at gmail.com>
> wrote:
> > Hi all:
> >
> > I am working on a project using llvm and we need to deal with
> multithreaded
> >
2009 Sep 15
1
Getting better perf from multithreaded app
Hello all,
first post here,
I have a multithreaded program that I can't live without. It's a commercial RAW image conversion program called SilkyPix. It works fine under Wine, with a few very minor bugs. But one thing nags me: it's oh so slow...
- I have a 64bit quad core with Ubuntu 64.
- Wine can use the multicore (or so I've read in the FAQ).
- SilkyPix is also
2014 Apr 17
2
[LLVMdev] multithreaded performance disaster with -fprofile-instr-generate (contention on profile counters)
On 2014-Apr-17, at 10:38, Xinliang David Li <xinliangli at gmail.com> wrote:
>
> Another idea is to use stack local counters per function -- synced up with global counters on entry and exit. the problem with it is for deeply recursive calls, stack pressure can be too high.
I think they'd need to be synced with global counters before function
calls as well, since any function