Displaying 11 results from an estimated 11 matches similar to: "file_column 2nd try...."
2012 May 11
2
[LLVMdev] LLVM library versionitis
I have a DSL that creates LLVM IR on the fly and JITs to x86 at runtime. (https://github.com/imageworks/OpenShadingLanguage)
Primarily, we have a main app that uses the library that implements our DSL. But we have other usage cases in which we have written dynamically-loaded plugins to 3rd party apps that we don't control, and our plugins use our language, which necessitates linking to
2010 Aug 16
3
[LLVMdev] Module management questions
I have an app that's dynamically generating and JITing code, and will have many such cases in the course of its run. They need to be JITed separately, because I need to execute the first batch before I know what the second one will be. Of course, I *still* need to execute the first after the need for the second arises, so I need to retain the JITed machine code for all the functions I
2013 Dec 09
3
[LLVMdev] [RFC] MCJIT usage models
Another usage case, slightly different than your #1:
6. Dynamic code generation (not interactive with respect to the source code)
- app generates code IR which is compiled as needed for execution
(important difference: no waiting for a typing human in the loop,
so very different expectations about responsiveness and bottlenecks)
- compilation speed IS critical (because many such
2006 May 25
0
[JOB] Client-server software developers
I''m posting this job for Sony Imageworks. They''re located in Culver City, in
sunny Los Angeles.
http://www.imageworks.com/films/index.html
They are looking for people who are well versed in a number of technologies and
enjoy learning new languages and being somebody who can be thrown at a problem
and learn what they need to do get the job done.
Ruby on Rails is being used in
2010 Oct 07
0
[LLVMdev] LLVM Developers' Meeting - Tentative Agenda & Hotel Location
First, some logistical information. The conference will be held at the San Jose Hilton. I've updated the webpage with the exact location. During registration (coming very soon!) you will have the opportunity to book a hotel room directly through that process (and get the reduced rate).
Now, I'm pleased to announce the tentative agenda for the 2010 LLVM Developers' Meeting:
LLDB -
2010 Nov 14
0
[LLVMdev] Ahoy JIT Users
On Fri, 12 Nov 2010 17:42:57, Daniel Dunbar <daniel at zuster.org> wrote:
> If you are a "sophisticated" JIT user and are using either internal
> APIs (either by integrating with LLVM, or by other C++ tricks), or are
> using obscure or poorly documented public APIs (e.g., why is
> runJITOnFunction exposed?) please make me aware of it!
Hi, Daniel! We
2012 May 11
0
[LLVMdev] LLVM library versionitis
On 11.05.2012, at 21:17, Larry Gritz wrote:
> I have a DSL that creates LLVM IR on the fly and JITs to x86 at runtime. (https://github.com/imageworks/OpenShadingLanguage)
>
> Primarily, we have a main app that uses the library that implements our DSL. But we have other usage cases in which we have written dynamically-loaded plugins to 3rd party apps that we don't control, and our
2006 May 11
9
world of warcraft doesnÄt work (sorry if double post)
if this is a doublepost please sorry bur the first post was blocked by
spamfilter because of wrong timesettings on my local computer. i reaplyed
to my original post and now im not shure if the mailserver thinks the
message is corrupt because of reply to a non existing message. here is the
originalmessage (again?)
Hi everyone,
thirst of all please forgive my bad english :)
i have installed wine
2006 Oct 18
1
Managing Yum repositories
I''m trying to use Puppet 0.19.3 to manage Yum repositories, using the
''yumrepo'' type. Our repository configuration files currently have a line
baseurl=file:///net/yum/CentOS4.1/$basearch/
where "$basearch" gets interpreted by ''yum''. I''ve tried the line
baseurl => "file:///net/yum/CentOS4.1/$basearch/"
in my
2006 Oct 18
19
Creating client certificates
I testing Puppet 0.19.3. If we decide to use it, we''d deploy it
across several thousand hosts. The method described for creating
client certificates described in the documentation - running
"puppetd --server <server> --waitforcert 60 --test" and "puppetca
--sign <client>" - is not practical for our installation. I''ve
tried creating
2010 Oct 01
0
[LLVMdev] LLVM-2.7 to 2.8 subtle change: MemoryBuffer::getMemBuffer
Hi guys,
In porting our project over to LLVM-2.8 today I ran into a change that should probably go in the 2.8 release notes. After r100485, the MemoryBuffer::getMemBuffer went from:
/// getMemBuffer - Open the specified memory range as a MemoryBuffer. Note
/// that EndPtr[0] must be a null byte and be accessible!