search for: ensmp

Displaying 19 results from an estimated 19 matches for "ensmp".

Did you mean: elsmp
2009 Feb 16
3
[LLVMdev] PredicateSimplifier questions
...icient (it was written before much of > include/ADT). Finally, predsimplify is likely to go away once I or > someone else writes a proper VRP pass. Whoever does this, I strongly encourage looking into using (or at least providing optional support for) the Apron library: http://apron.cri.ensmp.fr/library/ No sense reinventing these wheels. John Regehr
2016 Feb 21
3
Streaming MOVE commands
Hello Timo, Timo Sirainen <tss at iki.fi> writes: > Thanks, looks like this was broken with Maildir and mbox formats. It > also caused expunges in some other situations to be lost. Fixed: > > https://github.com/dovecot/core/commit/950a6e61d6c2dac961ce031bdd8b2895bc32b827 Thanks a lot for the fix, testing it now! Is this patch suitable of being backported to 2.2.13? (Debian
2009 Feb 16
0
[LLVMdev] PredicateSimplifier questions
...f >> include/ADT). Finally, predsimplify is likely to go away once I or >> someone else writes a proper VRP pass. > > Whoever does this, I strongly encourage looking into using (or at > least > providing optional support for) the Apron library: > > http://apron.cri.ensmp.fr/library/ > > No sense reinventing these wheels. In my experience, starting with a very simple and very cheap approach will get most of the benefit. For those who really want to eliminate every check possible, a more expensive approach can be used on top of it. If someone is intere...
2002 Apr 01
1
fft fails for lengths 392, 588, 968, 980 .... (PR#1429)
...} [1] 392 [1] 588 [1] 968 [1] 980 and I then get a segfault during gc(). The answers are way off, with imaginary parts 1e10 or more. These numbers are all multiples of 7^2 or 11^2. (Based on a report to R-help Date: Thu, 28 Mar 2002 09:37:34 +0100 From: Gabriel Fricout <Gabriel.FRICOUT@cmm.ensmp.fr> ) -- Brian D. Ripley, ripley@stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272860 (secr) Oxford OX1 3TG, UK...
2002 Apr 11
3
new acf package
I'm a PhD student and I'm working with covariance function. I'm interested to know if exist some packages in R to calculate and plot the bidimensional Autocovariance Function. the input matrix is a matrix that describe a spatial location over a 2-D space and I want to use it in the same way I can use a time serie in the 1-D acf. Thanks, Nicola.
2002 Apr 11
3
new acf package
I'm a PhD student and I'm working with covariance function. I'm interested to know if exist some packages in R to calculate and plot the bidimensional Autocovariance Function. the input matrix is a matrix that describe a spatial location over a 2-D space and I want to use it in the same way I can use a time serie in the 1-D acf. Thanks, Nicola.
2009 Aug 25
1
[LLVMdev] Simplifying a front-end project
John McCall schrieb: > Vikram S. Adve wrote: >> For the translator in step (2), I've so far had them generate LLVM IR >> in memory using the LLVM APIs. They find it a *lot* of work to learn >> the LLVM APIs, which doesn't teach them much about compiler concepts >> per se. To simplify this project, I am considering changing the >> project so they
2007 May 12
1
Text file busy
Hi! somebody knows how to avoid that samba mantains the files open on the server side while the clients close them. I have problems with a samba file server and windows/linux clients with the message "text file busy". The clients doesn't have the files open, the problem is in the server. I tried with oplocks=no without sucess. regards, diegows -- ------------------- Diego
2011 Aug 14
2
ntconfig.pol for samba3.5.6+openldap+Win7
Hi all, All clients are Win 7. How can I transmit rules defined in gpedit for users (for example forbid execution of regedit) to the Default User roaming profile? Is it done with a ntconfig.pol ? If yes, how can I make it ? Thanks ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program.
2009 Feb 16
1
[LLVMdev] PredicateSimplifier questions
...inally, predsimplify is likely to go away once I or >>> someone else writes a proper VRP pass. >> >> Whoever does this, I strongly encourage looking into using (or at >> least >> providing optional support for) the Apron library: >> >> http://apron.cri.ensmp.fr/library/ >> >> No sense reinventing these wheels. > > In my experience, starting with a very simple and very cheap approach > will get most of the benefit. For those who really want to eliminate > every check possible, a more expensive approach can be used on top of >...
2016 Feb 14
2
Streaming MOVE commands
Dear Dovecot devs, is streaming multiple MOVE commands by clients allowed? I am getting duplicated messages with the GNUS mail client, the interchange looks like this: *stream two moves to different folders* > 9019 UID MOVE 4062,4066,4068 "folder0" > 9020 UID MOVE 4063:4064,4067,4069:4072 "folder1" *the messages are copied* > * OK [COPYUID 1424475218 4062,4066,4068
2007 Dec 05
1
confint for coefficients from lm model (PR#10496)
Full_Name: Christian Lajaunie Version: 2.5.1 OS: Fedora fc6 Submission from: (NULL) (193.251.63.39) confint() does not use the appropriate variance term when the design matrix contains a zero column (which of course should not happen). Example: A 10x2 matrix with trivial column 1: > junk <- data.frame(x=rep(0,10), u=factor(sample(c("Y", "N"), 10, replace=T))) The
2011 Mar 13
1
use of ROCR package (ROC curve / AUC value) in a specific case versus integral calculation
Hello, I would like to use the ROCR package to draw ROC curves and compute AUC values. However, in the specific context of my application, the true positive rates and false positive rates are already provided by some upstream method. Of course, I can draw a ROC plot with the following command : plot(x=FPrate, y=TPrate, "o", xlab="false positive rate", ylab="true
2011 Feb 25
0
Named capture in regexp
...ode, but I'm not sure how to do them. Would you consider integrating this patch into the R source code for future releases, so the larger R community can take advantage of this feature? If there's anything else I can do to help please let me know. Sincerely, Toby Dylan Hocking http://cbio.ensmp.fr/~thocking/ -------------- next part -------------- A non-text attachment was scrubbed... Name: grep-named-capture.patch Type: text/x-patch Size: 9016 bytes Desc: not available URL: <https://stat.ethz.ch/pipermail/r-devel/attachments/20110225/819df4b2/attachment.bin> -------------- next pa...
2009 Feb 16
0
[LLVMdev] PredicateSimplifier questions
Hi John, John Regehr wrote: > PredicateSimplifier is a pretty interesting pass, but it doesn't look > like opt invokes it at any standard -Ox level, and so I assume that > llvm-gcc also does not use this pass? If that is right, I'm curious > about why this is the case -- does it simply not provide enough code > speedup to compensate for the increase in compile time? I
2009 Feb 16
3
[LLVMdev] PredicateSimplifier questions
PredicateSimplifier is a pretty interesting pass, but it doesn't look like opt invokes it at any standard -Ox level, and so I assume that llvm-gcc also does not use this pass? If that is right, I'm curious about why this is the case -- does it simply not provide enough code speedup to compensate for the increase in compile time? Also, a colleague and I (we both teach advanced
2015 Feb 16
3
[LLVMdev] LLVM parallel annotations
...ing clang and adding LLVM IR metadata annotations to indicate parallel regions and loops, then write optimizer passes that will run on top of the annotated LLVM IR. There has been a lot of research lately on Parallel IRs, such as SPIR[1 <https://www.khronos.org/spir>], SPIRE[2 <http://cri.ensmp.fr/classement/doc/A-487.pdf>] and INSPIRE[3 <http://delivery.acm.org/10.1145/2530000/2523727/p7-jordan.pdf?ip=18.102.234.120&id=2523727&acc=ACTIVE%20SERVICE&key=7777116298C9657D.DE5F786C30E1A3B4.4D4702B0C3E38B35.4D4702B0C3E38B35&CFID=627318069&CFTOKEN=29416610&__acm__=...
2007 Oct 23
2
Is it possible to stop ARP broadcast with Bridge shorewall ?
Dear shorewall list enthusiasts, I recently set up a dedicated linux box running shorewall in order to isolate my network from the "evil other side" :) It works so well that I first have to thank and congratulate everybody that took part in this project ! Then, I have a question, that separates my setup from "wonderful" to "heaven" : I activated the
2006 Feb 03
1
Interfacing C-code (gets and printf) under WINDOWS (Visual C++)
Hi I try to develop a R interface to a set of C routines, in order to produce a R-package on Geostatistics. My C-code uses interaction with the user as I use printf and gets statements. I develop the code in a LINUX environment and do not face any problem having the questions and answers routed on my current Terminal. When I tried to port the package on Windows, the problems began. No message