Displaying 20 results from an estimated 974 matches for "multithreading".
2002 Jan 17
1
Multithreading inquiry
I noticed that the statically linked ogg/vorbis libraries for Windows are
multithreaded. I want to link them into a non-multithreaded application, so
I'm considering recompiling them to use the non-multithreaded C runtime. Is
this feasible, or do libogg and libvorbis rely on multithreading?
<p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscrib...
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
2009 May 01
6
[LLVMdev] open source multithreaded garbage collector suitable for LLVM applications?
Hello All
Does any know about some opensource multithread-compatible (or
concurrent) garbage collector library, if possible suitable for LLVM?
(I mean that I want several mutator threads; the collector can be
stoptheworld or concurrent ....)
H.Boehm's conservative GC is multithread compatible, but seems quite
slow (allocation is about the time of a C malloc).
And it is well known that
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
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>
2007 Apr 05
1
Multithreading
Dear list,
is R capable of multithreading? At the moment it uses only 1 CPU
out of 4 CPUs on my system. Is there a compilation option or start option so
that R uses multiple CPUs at the same time to accomplish a calculation?
Some information on my system:
> R.version
_
platform x86_64-pc-linux-gnu
arch x...
2009 May 12
2
Multithreaded SAMBA/Winbind
.... I talked to the software vendor
(Tripwire) and they are saying that the winbind must be multithreaded
for this to run. My question to you.. Is there a samba release more
current than the version we are on (3.0.33 most currently supported Red
Hat version) that we can upgrade to to give us multithreading
functionality ? or is there a suggested workaround for this ?
Any help with this would be greatly appreciated.
Thanks.
Chuck Noga
The David J. Joseph Company
Sys. Infra. Engineer.
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
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
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 01
0
[LLVMdev] open source multithreaded garbage collector suitable for LLVM applications?
On May 1, 2009, at 1:27 PM, Basile STARYNKEVITCH wrote:
> Hello All
>
> Does any know about some opensource multithread-compatible (or
> concurrent) garbage collector library, if possible suitable for LLVM?
In fact, yes!
http://code.google.com/p/scarcity/
-Chris
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.
2006 Nov 25
0
Openssh in multithreading environment.
hi,
i have queries regarding openssh.
1. Openssh code is not multithread safe.
scenario :
- using solaris 8 for compilation & running application.
- at many places fork & exec* functions are used along with other non multithread safe functions.
- I have created a shared library of openssh & using it in other process
- when i want to sftp
2007 Aug 31
1
Plans for multithreading?
I was surprised, given the vector-ish nature of R, to see that
(according to my CPU meters) there doesn't seem to be any obvious
multithreading in R.
Are there any plans to change this?
2007 Nov 01
1
libtheora 1.0 beta3 supports multithread encoder?
Hi ,
I see in the libtheora 1.0 beta3 changelog that included new libtheoradec and libtheoraenc libraries supporting the new API from theora-exp , that it means that have multithread encoder?
_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
2009 May 02
0
[LLVMdev] open source multithreaded garbage collector suitable for LLVM applications?
Basile STARYNKEVITCH wrote:
> Does any know about some opensource multithread-compatible (or
> concurrent) garbage collector library, if possible suitable for LLVM?
>
> (I mean that I want several mutator threads; the collector can be
> stoptheworld or concurrent ....)
>
> H.Boehm's conservative GC is multithread compatible, but seems quite
> slow (allocation is
2004 Jul 13
1
SMP, Single System Image clustering, multithreading
Hi All,
I have looked through the following thread:
http://tolstoy.newcastle.edu.au/R/help/02b/4551.html
and would like to ask after 1.5 year the same question:
Are there any plans to involve multithread
computations in R?
Few word about my motivation:
I use R on my OpenSSI cluster with 7 CPUs, so one
could simply think of this cluster as of single computer
with 7 CPU. My
2015 Feb 03
2
Multithread support
...ith Theora and I
noticed it used only one core for encoding. Was I missing something? I did
not find any "thread" options.
As I dig, I found there was a multithread patch back in 2007, and some
ffmpeg2theora-multithread commits, but it looks like all this was dropped.
Am I right?
If the multithreading encoding was dropped out, may I ask why?
I think I could dedicate some of my free time to bring multithreading to
the Theora encoder but I would like to ensure not to be redundant ;-)
--
Thanks in advance for answers.
Mateusz Pabis
-------------- next part --------------
An HTML attachment was s...
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
> >