similar to: Dom0 crashing on x86_64

Displaying 19 results from an estimated 19 matches similar to: "Dom0 crashing on x86_64"

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
2007 Aug 31
1
compiling R-devel
Hello. I am in a habit of compiling daily snapshots of R-devel and R-patched on my Windows XP workstation. I have cygwin environment with up-to-date RTools and MiKTeX. I run cygwin and MiKTeX upadaters pretty often (every couple of days) so both of them are reasonably current. Recently I noticed a small annoyance when compiling R-dvel. It started happening right after I updated to the new
2008 Jun 23
1
r-base build: failure to convert R-FAQ to pdf
We have received an email in Ubuntu alerting us that something strange was going on during the r-base 2.7.1 rc build (see [1]). It seems that there is an error during the convertion of R-FAQ.texi to pdf. The following excerpt, taken from [2], shows the problem: /bin/sh: line 0: test: too many arguments TEXINPUTS=".:$TEXINPUTS" /usr/bin/texi2dvi --texinfo="@set UseExternalXrefs
2013 Aug 02
0
[LLVMdev] Missing optimization - constant parameter
> I expected that this optimization would 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
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
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
2013 Aug 02
2
[LLVMdev] Missing optimization - constant parameter
On Aug 2, 2013, at 1:37 PM, Rafael EspĂ­ndola <rafael.espindola at gmail.com> wrote: >> I expected that this optimization would 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
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 earn your degree in 1
2005 Nov 16
1
PPC package-ppc.read.raw.nobatch (PR#8316)
Full_Name: Martin O'Gorman Version: OS: Submission from: (NULL) (84.176.63.149) I have been looking at the PPC package and have a question. As 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.
2003 May 17
1
problem building dvi and pdf documentation on Darwin 10.2.6
I just installed R-1.7.0 on Darwin 6.6 (a.k.a. MacOS 10.2.6). 'make' and 'make check' run without any problems. 'make info' builds with no complaints, but 'make dvi' and 'make pdf' fail. I get refman.dvi and refman.pdf OK (with some warnings from pdftex that some names are referenced that do not exist), but R-FAQ.{dvi,pdf} fails as shown below. Attempts
2011 Dec 20
0
sedf: remove useless tracing printk and harmonize comments style.
sched_sedf.c used o have its own mechanism for producing tracing-alike kind of information (domain block, wakeup, etc.). Nowadays, with an even not so high number of pCPUs/vCPUs, just trying to enable this makes the serial console completely unusable, produces tons of very hard to parse and interpreet logging and can easily livelock Dom0. Moreover, pretty much the same result this is struggling to
2002 Jun 22
7
bonding & vlan - kernel 2.4.18 (RHL7.3)
Hi, Hopefully this won''t be too off-topic (I''ve seen both bonding & vlan mentioned on the list, but not really together). I''ve tried to get bonding (2 x 100Mb EEPro, but will want to try on 1000BaseT) and vlans to work together, but without luck. I can get them working fine (seemingly at least - I didn''t tried bursting on the bonded port) individually.
2006 Feb 23
1
rsync craps out, transferring large amounts of data
Hello, all... I've been trying for a week for transfer ~100 Gig of data using either rsync:// over IPSEC or tunneled through SSH, but it keeps failing... I have done as the documentation says and here are the results: I ran the following command: rsync -avz -vvv --dry-run --rsync-path=/root/bin/rsync-debug.sh -- delete-excluded --exclude-from=server-backup.exclusions --link-
2007 Mar 13
4
vmx status report against changeset 14356 - 1 new issue
Hi,All We have tested the latest xen on VT platform with Intel 915/E8500 chipset. Two platforms (PAE/32E) test all are based on SMP, It means that we boot up SMP guest OS in VMX. Here is the test summary: New issue (1) ================================================ 1) Fails to restore VMX guests http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=929 Issues List (3):
2013 Aug 05
0
[LLVMdev] Missing optimization - constant parameter
Are you sure that's it? I commented that block out, rebuilt llvm 3.3, and it still duplicates the constant. My concern is that long constant loads increase code size and if they can be avoided by better targeting it would be a win. My project's application of llvm tends to use a lot of long constants so this can be a significant optimization. I'll do some more debugging now that you
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
2004 Sep 10
0
Compiling FLAC for tremor and StrongARM
Hi, I'm developing squash (shameless plug: http://freshmeat.net/projects/squash/ ), and I've just added FLAC support. I'm going to hold off on OggFLAC support until the high level interface is in place. However, my question concerns compiling libFLAC for the strongarm. First I noticed that I could not use the files compiled by tremor, which I have already working. I suppose
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