similar to: [LLVMdev] IR code generation and JIT execution in a multithread environment

Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] IR code generation and JIT execution in a multithread environment"

2009 Jan 12
0
[LLVMdev] IR code generation and JIT execution in a multithread environment
Quick related Q: Does the global lock of the JIT during code generation prevent concurrent execution of already JIT-ted code? Thanks. On Jan 12, 2009, at 9:34 AM, Gordon Henriksen wrote: > On Jan 12, 2009, at 11:10, Edgar Geisler wrote: > >> my goal is to create a service with multiple threads, each of them >> generating IR code and JIT'ing/executing it in their threads
2009 Jan 13
0
[LLVMdev] IR code generation and JIT execution in a multithread environment
On Jan 12, 2009, at 8:10 AM, Edgar Geisler wrote: > Hi Everyone, > > my goal is to create a service with multiple threads, each of them > generating IR code and JIT'ing/executing it in their threads > and some threads will share generated code through a code > repository... > > 1. Is there a guideline/docu out there, which describes > serialization of > some
2009 Jan 12
0
[LLVMdev] IR code generation and JIT execution in a multithread environment
Hi Everyone, my goal is to create a service with multiple threads, each of them generating IR code and JIT'ing/executing it in their threads and some threads will share generated code through a code repository... 1. Is there a guideline/docu out there, which describes serialization of some LLVM objects, especially llvm::ExecutionEngine, llvm::ModuleProvider, llvm::Module? 2. Since
2006 Nov 26
3
Questions about generating samples in R
Hello! I have a data set with 8 columns and in about 5000 rows. What I want to do is to generate samples of this data set. Samples of a special size, as example 200. What is the easiest way to do this? No special things are needed, only the random selection of 200 rows of the data set. Thanks Alex -- Alexander Geisler * Kaltenbach 151 * A-6272 Kaltenbach email: alexander.geisler at gmx.at
2006 Dec 07
2
Simulation in R
Hello! I have the following problem. My code: --snip-- ergebnisse <- rep(0, each=2) stichproben <- rep(0, each=2) for (i in seq(1:2)) { n <- dim(daten)[1] ix <- sample(n,200) # producing samples samp_i <- daten[ix,] stichproben[i] <- samp_i # doesn???t works # Calculation of the model: posterior_i <- MCMClogit(y ~ fbl.ind + fekq3 + febitda4 + fuvs + fkru +
2006 Dec 07
1
Simulation in R - Part 2
Hello! So, the simulation works (drawing 100 samples and then calculate the model for each sample). Here is the code: --snip-- # sample size n=200 ergebnisse200 <- rep(0, each=100) stichproben200 <- vector(?list?, 100) default200 <- rep(0, each=100) for (i in seq(1:100)) { n <- dim(daten)[1] ix <- sample(n,200) samp_i <- daten[ix,] # draw samples y <- sum(samp_i$y)
2005 Nov 06
5
Human readable output
Hello, I would like to suggest an option to rsync that makes it output sizes in human readable units, instead of always using bytes. So Total file size: 30864401502 bytes would be output as: Total file size: 28.7 GiB Similarly for mebibytes and kibibytes. If there's already such an option, then I'm sorry -- I didn't find it in the manual pages. -- Martin Geisler
2015 May 16
2
[RFC 4/4] rpmsg: DMA map sgs passed to virtio
On Thu, May 7, 2015 at 3:28 AM, Edgar E. Iglesias <edgar.iglesias at gmail.com> wrote: > > On Wed, May 06, 2015 at 03:51:48PM +0930, Rusty Russell wrote: > > "Edgar E. Iglesias" <edgar.iglesias at gmail.com> writes: > > > From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com> > > > > > > Signed-off-by: Edgar E. Iglesias
2015 May 16
2
[RFC 4/4] rpmsg: DMA map sgs passed to virtio
On Thu, May 7, 2015 at 3:28 AM, Edgar E. Iglesias <edgar.iglesias at gmail.com> wrote: > > On Wed, May 06, 2015 at 03:51:48PM +0930, Rusty Russell wrote: > > "Edgar E. Iglesias" <edgar.iglesias at gmail.com> writes: > > > From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com> > > > > > > Signed-off-by: Edgar E. Iglesias
2015 May 06
2
[RFC 4/4] rpmsg: DMA map sgs passed to virtio
"Edgar E. Iglesias" <edgar.iglesias at gmail.com> writes: > From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com> > > Signed-off-by: Edgar E. Iglesias <edgar.iglesias at xilinx.com> First off, I have handed maintainership off to Michael S. Tsirkin, so his word is now law. That said... there's nothing fundamentally *wrong* with this, but
2015 May 06
2
[RFC 4/4] rpmsg: DMA map sgs passed to virtio
"Edgar E. Iglesias" <edgar.iglesias at gmail.com> writes: > From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com> > > Signed-off-by: Edgar E. Iglesias <edgar.iglesias at xilinx.com> First off, I have handed maintainership off to Michael S. Tsirkin, so his word is now law. That said... there's nothing fundamentally *wrong* with this, but
2003 Oct 22
1
issue with large number of files
Hi, I use rsync to syncronize two systems. There are 2 million + files. My problem is 1. rsync is very slow (it needs more than 48 hours) 2. rsync needs too much RAM (ca. 750 MByte on each server) The backup software needs 14 hours including file transfer to the backup server for full backup. My configuration: 1. Server Dual-XEON with 2 GB RAM. 2. Server Dual-PIII with 2 GB RAM. The partition
2016 Jun 21
2
Disabling passdb pam in local.conf
* Edgar Pettijohn <edgar at pettijohn-web.com>: > What distro settings? These files should remain unchanged: ~$ tree /etc/dovecot/ /etc/dovecot/ ??? conf.d ??? ??? 10-auth.conf ??? ??? 10-director.conf ??? ??? 10-logging.conf ??? ??? 10-mail.conf ??? ??? 10-master.conf ??? ??? 10-ssl.conf ??? ??? 10-tcpwrapper.conf ??? ??? 15-lda.conf ??? ??? 15-mailboxes.conf ??? ??? 20-imap.conf ???
2015 May 01
5
[RFC 0/4] rpmsg: Fix init of DMA:able virtqueues
From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com> I'm trying to run rpmsg and remoteproc on the ZynqMP (arm64) but I'm hitting a DMA/mm error. The issue was discussed here: http://lists.infradead.org/pipermail/linux-arm-kernel/2015-March/333050.html Russel King pointed out that the arm64 is not doing anything wrong by returning vmapped memory (which is incompatible
2015 May 01
5
[RFC 0/4] rpmsg: Fix init of DMA:able virtqueues
From: "Edgar E. Iglesias" <edgar.iglesias at xilinx.com> I'm trying to run rpmsg and remoteproc on the ZynqMP (arm64) but I'm hitting a DMA/mm error. The issue was discussed here: http://lists.infradead.org/pipermail/linux-arm-kernel/2015-March/333050.html Russel King pointed out that the arm64 is not doing anything wrong by returning vmapped memory (which is incompatible
2016 Jun 20
5
Disabling passdb pam in local.conf
* Edgar Pettijohn <edgar at pettijohn-web.com>: > Is your goal to have "1" config file? No, that would eliminate the ability to change distro settings via the regular package management. My goal is to add/remove what my service requires via the additional local.conf. p at rick -- [*] sys4 AG https://sys4.de, +49 (89) 30 90 46 64 Schlei?heimer Stra?e 26/MG,80333 M?nchen
2016 Jun 21
3
Disabling passdb pam in local.conf
* Edgar Pettijohn <edgar at pettijohn-web.com>: > > Only /etc/dovecot/local.conf should be changed. > > > So you want the standard files to remain unchanged from default settings and override them with your settings in local.conf? Exactly (he said that in his initial mail). -- [*] sys4 AG http://sys4.de, +49 (89) 30 90 46 64 Schlei?heimer Stra?e 26/MG, 80333 M?nchen
2007 Jun 16
2
Specs don''t find modules when using the secure_actions or ssl_requirement plugin
Hello, I''m trying the secure_actions plugin (or ssl_requirements) I''m installed the plugin, and added the include in application controller: class ApplicationController < ActionController::Base include ExceptionNotifiable include AuthenticatedSystem include SecureActions ... but when I try to run the specs I got this error:
2015 Apr 18
2
Dovecot 2.2.16: disappearing messages, mismatched summaries, duplicated messages, excessive full re-downloads
Edgar, thanks for the help! -------- Original Message -------- Subject: Re: Dovecot 2.2.16: disappearing messages, mismatched summaries, duplicated messages, excessive full re-downloads From: Edgar Pettijohn III <edgar at pettijohn-web.com> To: David Gessel <gessel at blackrosetech.com> Date: Sat Apr 18 2015 16:30:07 GMT+0300 (Arabic Standard Time) > > On Apr 18, 2015, at 8:00
2002 Apr 10
1
Re: Problems with ext3
Edgar, As far as I see there is nothing wrong with the partition, if you change it from /(root) you should be able to mount it directly as long as the kernel supports ext3 filesystem and you use the correct -t option. Not even necessary to repair it. This is a guess, but what most probably happened is that ext3 is builtin as a module or the mount statement in the initrd in /linuxrc was not