search for: drf

Displaying 20 results from an estimated 42 matches for "drf".

Did you mean: def
2002 Jun 05
1
oplock break failures
...this mean? Jun 5 09:42:50 files2 smbd[27585]: [2002/06/05 09:42:50, 0] smbd/oplock.c:oplock_break(788) Jun 5 09:42:50 files2 smbd[27585]: oplock_break: no break received from client within 30 seconds. Jun 5 09:42:50 files2 smbd[27585]: oplock_break failed for file Pledgemaker/Pledgemaker-DRF/Appeal Loaders/02-R02L01-Lifeline Invite #1.txt (dev = 904, inode = 10554, file_id = 113). Jun 5 09:42:50 files2 smbd[27585]: [2002/06/05 09:42:50, 0] smbd/oplock.c:oplock_break(833) Jun 5 09:42:50 files2 smbd[27585]: oplock_break: client failure in oplock break in file Pledgemaker/Pledgemake...
2019 Apr 17
2
Disable combining of loads and stores in instcombine
> Why do you want this? The goal is to share arrays between multiple tiles on a manycore architecture by splitting arrays between tiles. With a DRF memory model, it makes sense to elide multiple loads to the same memory location between barriers.; IIRC the semantics for volatile don’t allow this eliding. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/2019...
2010 Apr 09
5
Read data in sequences
...bers on a same line represent pairs of values for "x1" and "x2". In SAS, this type of dataset is easy to read using "@@" as in: data a; input Treat @ x1 x2 @@; But I would like to know how to read it with R, to get rid of my addiction to SAS. Thank You, Rock Ouimet DRF-MRNF, Quebec -- View this message in context: http://n4.nabble.com/Read-data-in-sequences-tp1819487p1819487.html Sent from the R help mailing list archive at Nabble.com.
2019 May 23
3
df
<rant> I *swear*, I may get aggravated enough to write a drh - d *real* h. Between C7, with all the /tmpfs, and this debian 18.04 that has a dozen /snap all showing up.... All I want it to display is physical drive partition space.... </rant> mark
2019 May 23
2
df
On Thu, 23 May 2019, Stephen John Smoogen wrote: > I might actually be able to have a workable answer: > > alias drf='/usr/bin/df -x tmpfs' /usr/bin/df \ -x autofs -x binfmt_misc -x cgroup -x configfs -x debugfs \ -x devpts -x devtmpfs -x efivarfs -x hugetlbfs -x mqueue \ -x nfsd -x proc -x pstore -x rpc_pipefs -x securityfs \ -x selinuxfs -x sysfs -x tmpfs :-) -- Paul Heinlein heinlein at...
2019 Apr 17
1
Disable combining of loads and stores in instcombine
> But why is it desirable to avoid combining adjacent stores? If you’ve got DRF code then the combination can’t be observed. It’s more that the consecutive stores would be going to different tiles. If multiple stores are combined in IR, I don’t think they’d be able to decoupled in IR, unless there’s a way to always determine which global object an arbitrary GEP is pointing to...
2007 May 04
1
Partitioning a kde2d into equal probability areas
...obability. It is straightforward in the 1d case, like qnorm(seq(0,1,length=5)) but for 2d I'd need more constraints. Any suggestions for how to approach this? Is seems like a spatial sampling problem but I'm not sure where to look. Thanks for your time, Dave -- Dr. David Forrest drf at vims.edu (804)684-7900w drf5n at maplepark.com (804)642-0662h http://maplepark.com/~drf5n/
2015 Jun 24
2
[RFC] NVIDIA hardware reference headers
Hello, The Tegra GPU system software team has begun to align our new-chip development efforts with Nouveau. In particular we would like to arrive at a place where the Nouveau kernel driver code base is our primary development environment. To that end I'd like to add some "official" hardware reference headers to Nouveau. The headers are derived from the information we use
2005 Jun 06
9
R Graph Gallery : categorization of the graphs
Hello all, It seems that the next improvement to the R Graph Gallery is categorization of the graphics, that way each graph will be easier to find. That step should be done *carefully* if we want to avoid the opposite side-effect : graph not reachable through the categories. That's why the wisdom of the R community is required. Graphics will be classified in : - categories -
2004 Aug 27
1
Plotting irregular grid as image or persp
Hi, I have an array of 2d node locations and an array triangles, and would like to plot something like a image or persp. An example of doing it with rgl is: library(ncdf) library(rgl) # wget http://www.maplepark.com/~drf5n/extras/teapot.nc teapot<-open.ncdf("teapot.nc") z<-get.var.ncdf(teapot,"tris") l<-get.var.ncdf(teapot,"locations") z<-as.vector(z) demo.teapot<-function(x=1){ rgl.triangles(l[1,z],l[2,z],l[3,z]) x<-readline("Hit any key to continu...
2016 Apr 09
3
[FORGED] Generating random data with non-linear correlation between two variables
Please specify your goal in the oracle/psql analytical functions you know or specify what you mean by nonlinear correlation Sent from my iPhone > On Apr 9, 2016, at 6:09 AM, Muhammad Bilal <Muhammad2.Bilal at live.uwe.ac.uk> wrote: > > No its not. I am doing all these experiments for my own learning purpose. I am Oracle SQL & PLSQL programmer and I can do these things with
2016 Apr 09
0
[FORGED] Generating random data with non-linear correlation between two variables
...Bilal Research Assistant and Doctoral Researcher, Bristol Enterprise, Research, and Innovation Centre (BERIC), University of the West of England (UWE), Frenchay Campus, Bristol, BS16 1QY muhammad2.bilal at live.uwe.ac.uk ________________________________________ From: David R Forrest <drf at vims.edu> Sent: 09 April 2016 11:48 To: Muhammad Bilal Cc: Rolf Turner; r-help at r-project.org Subject: Re: [R] [FORGED] Generating random data with non-linear correlation between two variables Please specify your goal in the oracle/psql analytical functions you know or specify what you mea...
2011 Aug 22
0
[LLVMdev] Reviving the new LLVM concurrency model
...L, then L is reasonable to return any values (at least the write from S, or the recent write happens before L), so undef is fine with me. If the execution runs L earlier than S, and L can only see one write till the point, can the L still return any value? L can return any value in term of the C++ DRF memory model because eventually the L has a data race with the future S, which makes the program behavior undefined--- so reading any value is a good behavior. At this case, LLVM only allows some particular behaviors--namely, the load can return any value, but returning a value that none earlier w...
2019 May 23
0
df
I might actually be able to have a workable answer: alias drf='/usr/bin/df -x tmpfs' On Thu, 23 May 2019 at 16:22, mark <m.roth at 5-cent.us> wrote: > <rant> > I *swear*, I may get aggravated enough to write a drh - d *real* h. > Between C7, with all the /tmpfs, and this debian 18.04 that has a dozen > /snap all showing up......
2019 May 23
0
df
On Thu, 23 May 2019 at 16:43, Paul Heinlein <heinlein at madboa.com> wrote: > On Thu, 23 May 2019, Stephen John Smoogen wrote: > > > I might actually be able to have a workable answer: > > > > alias drf='/usr/bin/df -x tmpfs' > > /usr/bin/df \ > -x autofs -x binfmt_misc -x cgroup -x configfs -x debugfs \ > -x devpts -x devtmpfs -x efivarfs -x hugetlbfs -x mqueue \ > -x nfsd -x proc -x pstore -x rpc_pipefs -x securityfs \ > -x selinuxfs -x sysfs -x tmpfs > &...
2004 Aug 25
0
Q: how to submit documentation patches?
...utils/help/methods attached would also have saved me some time. R does many things, but the documentation is hard to patch and improve. And back to my subject: Is producing patches against the authoritative documentation the recommended way to improve the documentation? Dave -- Dave Forrest drf at vims.edu (804)684-7900w drf5n at maplepark.com (804)642-0662h http://maplepark.com/~drf5n/ -------------- next part -------------- diff -ur R-1.9.1-dist/src/library/utils/man/methods.Rd R-1.9.1/src...
2004 Dec 08
2
what about a mascot ?
My friend Veslot proposed me the Raven ! http://www.teteamodeler.com/allopass/images/corbeau.jpg As a matter of fact the intelligence of this bird is comparable to one of a monkey, although its brain is close to a reptile brain. R is quite the same : small, compact, but so clever. This is a canadian website explaining (in french) the R-aven intelligence
2005 Mar 22
1
sub('^','var',1:3) produces unexpected results
..." "2" "3" sub('$','var',1:3) # "1var" "2var" "3var" # This generates what I expected from the first case: sub('^.','var',11:13) # "var1" "var2" "var3" Dave -- Dr. David Forrest drf at vims.edu (804)684-7900w drf5n at maplepark.com (804)642-0662h http://maplepark.com/~drf5n/
2005 Jun 14
0
Plotting quiver vector tensor arrows 2d field data
...<- matrix(rnorm(100),nrow=10) v <- matrix(rnorm(100),nrow=10) quiver(u,v) I added these functions as an example to the Wiki: http://fawn.unibw-hamburg.de/cgi-bin/Rwiki.pl?GraphGallery http://fawn.unibw-hamburg.de/cgi-bin/Rwiki.pl?QuiverPlot Thanks for your time, Dave -- Dr. David Forrest drf at vims.edu (804)684-7900w drf5n at maplepark.com (804)642-0662h http://maplepark.com/~drf5n/
2006 Feb 21
1
color quantization / binning a variable into levels
...ize<-function(x,n=10, breaks=NULL){ # bin the variable x into n levels xmin<-min(x) xmax<-max(x) 1+floor(n*(x-xmin)/(xmax-xmin)*.999) } x<- -10:10 cbind(x,quantize(x,2),quantize(x),quantize(x,21)) quantize(x,breaks=c(5,7)) # Thanks for your time, Dave -- Dr. David Forrest drf at vims.edu (804)684-7900w drf5n at maplepark.com (804)642-0662h http://maplepark.com/~drf5n/