search for: xtr

Displaying 18 results from an estimated 18 matches for "xtr".

Did you mean: str
2006 Nov 19
1
Reflex XTR in Linux
Hello all. Anybody here had success with install and running RC Reflex XTR simulator in linux using Wine?? I manage to do the install, but failed to install the Reflex usb interface, therefore was unable to control the models. Thanks in advance for any tips, Jorge --------------------------------- Sponsored Link Don't quit your job - take classes online and...
2013 Aug 02
2
[LLVMdev] Missing optimization - constant parameter
For the little C test program where a constant is stored in memory and also used as a parameter: #include <stdint.h> uint64_t val, *p; extern uint64_t xtr( uint64_t); uint64_t caller() { uint64_t x; p = &val; x = 12345123400L; *p = x; return xtr(x); } clang (3.2, 3.3 and svn) generates the following X86 code (at -O3): caller: movq $val, p(%rip) movabsq $12345123400, %rax # imm =...
2005 Jul 12
21
Dom0 crashing on x86_64
I am seeing a problem with Dom0 crashing on x86_64 whenever I create a DomU. I''ve done some more testing, and it appears that this problem is somehow related to networking. Dom0 crashes as soon as the networking services are started when DomU is coming up. As an experiment, I brought up DomU without networking, and it stayed up. As soon as I started DomU with networking enabled, however,
2007 Aug 31
1
compiling R-devel
...tten on refman.pdf (1563 pages, 7869936 bytes). Transcript written on refman.log. creating doc/manual/version.texi texi2dvi --pdf --texinfo="@set UseExternalXrefs " R-FAQ.texi This is pdfTeX, Version 3.141592-1.40.4 (MiKTeX 2.6) entering extended mode ! I can't find file `\tmp\t2d6036\xtr\R-FAQ.texi'. <*> /tmp/t2d6036/xtr/R-FAQ.texi Please type another input file name: Now the file /tmp/t2d6036/xtr/R-FAQ.texi exists at this point is not empty and has usual protection codes. I tried different versions of back and front slashes, double backslashes, etc., but to no avail....
2005 Nov 16
1
PPC package-ppc.read.raw.nobatch (PR#8316)
...s the input data is comma separated, shouldn?t the command to read in the raw (no batch) mass spec data indicate that sep=?,? (marked below) ? Otherwise, the data read in is the pair of values (m/z,intensity). It is not obvious why that should be. While playing around with the data, I noticed that xtr (the intensity matrix) is a full matrix of value NA as a result of omitting the ?,?. I apologize in advance if I have missed something obvious. However, the batch read function does use the sep=?,?. This possible bug doesn't doesn't crash the script and so is difficult to spot. Many tha...
2008 Jun 23
1
r-base build: failure to convert R-FAQ to pdf
..., shows the problem: /bin/sh: line 0: test: too many arguments TEXINPUTS=".:$TEXINPUTS" /usr/bin/texi2dvi --texinfo="@set UseExternalXrefs " --pdf R-FAQ.texi /usr/bin/texi2dvi: Running pdfetex --file-line-error '/build/buildd/r-base-2.7.1~20080621/doc/manual/R-FAQ.t2d/pdf/xtr/R-FAQ.texi' ... This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6) file:line:error style messages enabled. %&-line parsing enabled. entering extended mode ! I can't find file `/build/buildd/r-base-2.7.1'. <to be read again> \penalty ~->\penalty...
2013 Aug 02
0
[LLVMdev] Missing optimization - constant parameter
...uld be picked > up in a cse, gvn, machine-cse or even peepholing pass. > > Comments? At the LLVM IR level this is represented as define i64 @caller() #0 { entry: store i64* @val, i64** @p, align 8, !tbaa !0 store i64 12345123400, i64* @val, align 8, !tbaa !3 %call = tail call i64 @xtr(i64 12345123400) #2 ret i64 %call } Which is probably the best representation to have at this relatively high level. At the machine level it looks like it is the register coalescer that is duplicating the constant. It transforms 0B BB#0: derived from LLVM BB %entry 16B %vreg0&...
2006 Feb 23
1
rsync craps out, transferring large amounts of data
...rver-backup.exclusions --link- dest=Server3-S-on--Previous -e ssh user@myhost.com:/mnt/S/ Server3-S- on-test/ | tee ~/Desktop/test.log on the local (receiving) host I get the following for the last few lines of detailed logs: (tail test.log) recv_generator(dterm/jlkrohmer-2006-Jan-31-14.37.24.xtr,431858) recv_generator(dterm/jlkrohmer-2006-Jan-31-14.42.03.xtr,431859) recv_generator(dterm/jlkrohmer-2006-Jan-31-14.53.39.xtr,431860) recv_generator(dterm/jlkrohmer-2006-Jan-31-16.04.59.xtr,431861) recv_generator(dterm/jlkrohmer-2006-Jan-31-16.48.00.xtr,431862) recv_generator(lost+found,431863) g...
2005 Oct 06
1
how to use tune.knn() for dataset with missing values
Hi Everybody, i again have the problem in using tune.knn(), its giving an error saying missing values are not allowed.... again here is the script for BreastCancer Data, library(e1071) library(mda) trdata<-data.frame(train,row.names=NULL) attach(trdata) xtr <- subset(trdata, select = -Class) ytr <- Class bestpara <-tune.knn(xtr,ytr, k = 1:25, tunecontrol = tune.control(sampling = "cross")) and here i got the mentioned error. can anybody help me in this regard... Thanks & Regards, Uttam Phulwale Tata Consultancy Services Li...
2008 Nov 20
1
Calculate an equation
Dear all, I was wondering if you could help me with the following. I want to do calculate this equation: Ps(t)= (?_(r=1)^N Xtr* 1/?drs)/(?_(r=1)^N 1/?drs) Ps(t) ? Probability that taxon t will occur at site s (300 sites s) N ? Number of sites = from 1 to 49 Xtr ? Value for taxon t at site r (I have this information in a table, 40 taxa (columns) t, 49 sites r) drs ? Distance from site r to site s (this information is on a...
2013 Aug 02
2
[LLVMdev] Missing optimization - constant parameter
...even peepholing pass. >> >> Comments? > > > At the LLVM IR level this is represented as > > define i64 @caller() #0 { > entry: > store i64* @val, i64** @p, align 8, !tbaa !0 > store i64 12345123400, i64* @val, align 8, !tbaa !3 > %call = tail call i64 @xtr(i64 12345123400) #2 > ret i64 %call > } > > Which is probably the best representation to have at this relatively high level. > > At the machine level it looks like it is the register coalescer that > is duplicating the constant. It transforms > > 0B BB#0: derived...
2013 Aug 05
0
[LLVMdev] Missing optimization - constant parameter
...Comments? > > > > > > At the LLVM IR level this is represented as > > > > define i64 @caller() #0 { > > entry: > > store i64* @val, i64** @p, align 8, !tbaa !0 > > store i64 12345123400, i64* @val, align 8, !tbaa !3 > > %call = tail call i64 @xtr(i64 12345123400) #2 > > ret i64 %call > > } > > > > Which is probably the best representation to have at this relatively > high level. > > > > At the machine level it looks like it is the register coalescer that > > is duplicating the constant. It trans...
2004 Sep 10
0
Compiling FLAC for tremor and StrongARM
...host=arm-linux --prefix=/usr/local/i686-linux-gnu --enable-static --disable-shared (and make and make install) Anyway I get libogg without a hitch, as I mentioned; but when I get to the end of the compilation of libFLAC I get this error with ld: Making all in flac make[3]: Entering directory `/xtr/home/gryn/squash/flac-1.1.0/src/flac' /bin/sh ../../libtool --mode=link arm-linux-gcc -I../.. -I./include -I../../include -O3 -DNDEBUG -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__ -g -O2 -I/usr/local/i686-linux-gnu/include -o flac analyz...
2003 May 17
1
problem building dvi and pdf documentation on Darwin 10.2.6
...e right direction, I'd appreciate it. Thanks, Mark Perkins perkinsm at bway.net --------------------------- Output from make: TEXINPUTS=".:$TEXINPUTS" ../../bin/texi2dvi --texinfo="@set UseExternalXrefs" R-FAQ.texi This is TeX, Version 3.14159 (Web2C 7.4.5) (/tmp/t2d10777/xtr/R-FAQ.texi (./texinfo.tex Loading texinfo [version 2002-03-26.08]: Basics, pdf, fonts, page headings, tables, conditionals, indexing, sectioning, toc, environments, defuns, macros, cross references, (/sw/share/texmf/tex/generic/misc/epsf.tex) localization, and turning on texinfo input format.) ! Mi...
2002 Jun 22
7
bonding & vlan - kernel 2.4.18 (RHL7.3)
...d port) individually. However, when I bond the ports together and then run vlans on top, it doesn''t seem to work (although there are no errors when configuring the interfaces). FWIW, this is: * RedHat 7.3 ("customised" RH73 kernel - 2.4.18) * Intel EEPro 100Mb dual-port NIC * Extreme Summit4 switch. Any suggestions gratefully accepted. Ivan -- Ivan Beveridge <ivan@dreamtime.org> <ivan@dreamtim.demon.co.uk>
2007 Aug 20
7
OT: Suggestions for database for physicians patient records?
This is very OT. If list readers can point me in the right direction, to other mailing lists, or web sites for recommended databases, that will be much appreciated! My wife's doctor wants to move records, for approximately 6000 patients (over a 12 year period), from paper (18th century) to a database (20th century). The data entry will be a PITA, for his secretaries, regardless of what
2002 Jun 20
16
problem with predict()
Hi, It is most probably just my R-ignorance, but I have following problem with using predict(). I train the model using 164 cases and then I try to use it on the data set with 35 cases, but I am getting 164 predictions ? R-code below illustrates in more detail what I am doing. Truly yours, R train = read.csv("train.csv", header = TRUE, row.names = "mol",
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking