search for: _exposing_

Displaying 4 results from an estimated 4 matches for "_exposing_".

2004 Jan 08
2
[LLVMdev] Re: idea 10
...resource > class as memory :-) Chris, LLVMers, could you allocate CPUs resources as > you do it for registers and memory? :P Our mid-term plans include looking at multithreading/parallel processing kinds of things, at least for shared memory systems. At the LLVM level, we are interested in _exposing_ parallelism. In the fib example you are using, for example, it is pretty easy to show that all of the subcalls to fib can be run independently of each other (ie, in parallel). Combined with a suitable runtime library (e.g., pthreads), you could imagine an LLVM transformation that allows it to run...
2004 Jan 08
0
[LLVMdev] Re: idea 10
...CL> Our mid-term plans include looking at multithreading/parallel processing CL> kinds of things, at least for shared memory systems. cool... guys, I pray you get your "financial air" on a regular basis! what you do is very important. CL> At the LLVM level, we are interested in _exposing_ parallelism. hm... strange. You mean, you going to define explicitly what and how to parallelize? Why then we don't need similar unpleasant things for registers?.. CL> In the fib example you are CL> using, for example, it is pretty easy to show that all of the subcalls to CL> fib ca...
2004 Jan 08
0
[LLVMdev] Re: idea 10
> I see more precisely what you mean, but I don't think it is that > straightforward to generalise the benefits multiple CPU on single host > programming to multiple CPU at multiple hosts. I don't think that both > cases involve the same techniques. you are right, just think of shared memory. > For example, in "single host" configuration you get a very low
2004 Jan 08
1
[LLVMdev] Re: idea 10
Hello again Valery, Valery A.Khamenya wrote: > All benefits, what one could obtain from "LLVM supporting multiple CPU > at single host", one might obtaine from "LLVM supporting multiple CPU > at multiple hosts". Isn't that logical? I see more precisely what you mean, but I don't think it is that straightforward to generalise the benefits multiple CPU on