Displaying 20 results from an estimated 27 matches for "vbars".
Did you mean:
bars
2003 Nov 13
1
creating a "report" table from a set of lists
I've been trying to figure out how to accomplish the following...
I've got a list (returned from a function) and I would like to "cbind()" the
lists together to create a "cross tab" report or simply bind them together
somehow
the function returns a list that looks like the following:
> all$BM
$species
[1] "BM"
$vbar.nobs
[1] 3
$vbar.sum
[1] 54.05435
2009 Mar 20
1
[LLVMdev] getTripCount and pointers
Hello,
I'm having some trouble with getTripCount() ... again. In particular
it fails in the first of the following two examples, although it works
for the second. By fails, I mean it returns NULL.
---------- example 1 ----------
test1(int *a, const int *ip) {
int k;
for (k = 0; k < ip[2]; ++k) {
a[k] = (k+11)/(k+2);
}
}
---------- example 2 ----------
test2(int
2010 Jun 02
10
VGA passthrough nVidia NVS 295
I want to try to get VGA passthrough working in a Windows 7 x64 domU.
I''m running debian squeeze/testing/unstable with Jeremy''s 2.6.32.x kernel.
The best I got to work is the device showing up under Windows 7, with
all resources and whatnot.
I''ve applied the vga-loadbios patch and vBAR-pBAR patch to xen, and the
vBAR-pBAR patch to qemu-dm.
This behaviour
2013 Jul 23
73
Bug: Limitation of <=2GB RAM in domU persists with 4.3.0
I just built 4.3.0 in order to get > 2GB of RAM in domU with GPU
passthrough without crashes. Unfortunately, the same crashes still
happen. Massive frame buffer corruption on domU before it locks up
solid. It seems the PCI memory stomp is still happening.
I am using qemu-dm, as I did on Xen 4.2.x.
So whatever fix for this went into 4.3.0 didn''t fix it for me.
Passing less than 2GB
2013 Dec 03
7
[PATCH] xen: arm: Fixing ttbcr (TCR_EL1 for AArch64) size.
This patch fixes size of ttbcr register (TCR_EL1 in case of AArch64)
and it''s programming considering size in case of context switch.
Currently ttbcr is defined as 32b register but for AArch64 TCR_EL1
size is 64b.
Signed-off-by: Anup Patel <anup.patel@linaro.org>
Signed-off-by: Pranavkumar Sawargaonkar <pranavkumar@linaro.org>
---
xen/arch/arm/domain.c | 8
2002 Jun 17
3
Error bars.
There was an inquiry on this list recently about plotting some simple
error bars on a graph. Now Splus has a function (error.bar ---
originally written by Sue Clancy of DMS, CSIRO, I believe) to do this
job virtually at the touch of a key. (Well a few keys. :-) ) The
error.bar function is written completely in raw S --- no calls to
``.Internal'' or anything like that. So it would be
2009 Jan 26
20
Successful PCIe Graphics VT-d Passthrough to Win32 DomU, Q35 chipset
I am happy to announce that I have successfully (and finally!) been able
to pass a PCIe graphics card via VT-d to a Windows XP HVM DomU.
About time!
Config:
-Intel Q6600 Core 2 Quad-Core, G0 stepping (I think)
-Intel DQ35JO Motherboard, Q35 Chipset, BIOS v.991 (1/9/09), VT and VT-d
enabled
-nVidia 9500GT (for VT-d passthrough - DomU)
-nVidia GeForce2 MX200 (Dom0 console)
-Xen (build:
2009 Jan 26
20
Successful PCIe Graphics VT-d Passthrough to Win32 DomU, Q35 chipset
I am happy to announce that I have successfully (and finally!) been able
to pass a PCIe graphics card via VT-d to a Windows XP HVM DomU.
About time!
Config:
-Intel Q6600 Core 2 Quad-Core, G0 stepping (I think)
-Intel DQ35JO Motherboard, Q35 Chipset, BIOS v.991 (1/9/09), VT and VT-d
enabled
-nVidia 9500GT (for VT-d passthrough - DomU)
-nVidia GeForce2 MX200 (Dom0 console)
-Xen (build:
2006 Oct 28
1
(kein Betreff)
Frank Harrell rote in a message dating from Oct 8th:
> n.group is an argument to latex.default in the Hmisc package
I must admit that I can't find it in the function head,
which reads on my installation:
function (object, title = first.word(deparse(substitute(object))),
file = paste(title, ".tex", sep = ""), append = FALSE, label = title,
rowlabel = title,
2010 Nov 21
1
VGA passthrough secondary 9600GT to win7 successful but code 12
This is my first time posting, sorry if i don''t use the proper etiquette.
I''ve successfully passed through my secondary GPU to a windows 7 hvm.
Configuration:
Secondary GPU is 9600 GT
dom0 is jeremy''s pvops
xen source xen-4.0.2-rc1-pre
Patches from applied http://lists.xensource.com/archives/html/xen-devel/2010-05/msg00441.html
MSI.9600.GT.bin as
2007 May 04
2
Alternatives to unlist()
Given the following, one of the things I am trying to see is what % of
draws are below a certain number:
lambda <- 3
rate <- 5
n <- 5
set.seed(123)
v <- replicate(n, rexp(rpois(1,lambda), rate))
vv <- unlist(v)
cat("% of draws below 0.1:", round(length(subset(vv, vv <
0.1))/length(vv)*100,0), "%\n")
In actuality, my lambda, rate, and n are 26, 10, 1000000,
2011 Mar 03
1
Trying CUDA/OpenCL with VGA Passthrough
Hi everyone,
First post, already a call for help :)
I''m trying to use a gtx 580 with Xen 4 VGA Passthrough to test CUDA
performances, the MB is an Asus P7P55 LX with a i7 870, VT-D is enabled
in bios and reported as active by Xen.
I''m using Debian Squeeze as Dom0 and DomU OS.
Dom0 is configured with iommu=1 and iommu=verbose parameters and
xen-pciback.hide=(01:00.0)(01:00.1)
2009 Aug 28
64
[PATCH 2/2] graphics passthrough with VT-d
This patch supports basic gfx passthrough on QEMU:
- disable emulated VGA adpater if there is passthroughed gfx
- register/unregister legacy VGA I/O ports and MMIOs for passthroughed gfx
Signed-off-by: Ben Lin <ben.y.lin@intel.com>
Signed-off-by: Weidong Han <weidong.han@intel.com>
_______________________________________________
Xen-devel mailing list
2013 Jul 07
2
Multiple VMs VGA Passthrough Success Report
I just wanted to drop a note to say that I have managed to get VGA
passthrough working with multiple cards and domUs.
The cards I am using are quasi Quadro 5000 (modified GTX470) and quasi
Quadro 6000 (modified GTX480). (Here is an older article about modified
GTS450 modified to Quadro 2000 if anyone is interested:
2010 May 10
5
GFX Passthrough
Hi List,
many People seem to be interested in the Graphic-Card Passthrough Feature (for
more or less obvious reasons).
Official Support is still under development, and i hope not to interfere with it
in any (bad) way ...
But i remember my own painfull and timeconsuming research when i wanted this
feature to work, so i thought perhaps this spares some time for the unpatient
users like me :)
2013 Jul 31
11
Is it possible to mod a Geforce GTX 560 graphics card into a Quadro?
Dear Gordan,
I have a Gigabyte Geforce GTX 560. Is it possible to mod it into a Quadro?
If it is possible, please give me the link with the list of steps to mod
it into a Quadro. Is it a simple process?
Thank you very much.
--
Yours sincerely,
Singapore Citizen Mr. Teo En Ming (Zhang Enming)
2013 Jul 31
11
Is it possible to mod a Geforce GTX 560 graphics card into a Quadro?
Dear Gordan,
I have a Gigabyte Geforce GTX 560. Is it possible to mod it into a Quadro?
If it is possible, please give me the link with the list of steps to mod
it into a Quadro. Is it a simple process?
Thank you very much.
--
Yours sincerely,
Singapore Citizen Mr. Teo En Ming (Zhang Enming)
2012 Mar 28
52
[REQUEST] Request for Xen Users to Attempt Jean David Techer's Xen 4.2-unstable VGA Passthrough Documentation
Dear Xen Users,
I have _partial_ (that is, less than 100%) success following Jean David
Techer''s Xen 4.2-unstable VGA Passthrough Documentation. In both Windows
8 Consumer Preview HVM and Windows XP Home Edition HVM, I get yellow
exclamation mark besides NVIDIA Geforce 8400 GS in Device Manager.
NVIDIA Geforce 8400 GS in Device Manager reports:
1) Windows has stopped this device
2012 Mar 28
52
[REQUEST] Request for Xen Users to Attempt Jean David Techer's Xen 4.2-unstable VGA Passthrough Documentation
Dear Xen Users,
I have _partial_ (that is, less than 100%) success following Jean David
Techer''s Xen 4.2-unstable VGA Passthrough Documentation. In both Windows
8 Consumer Preview HVM and Windows XP Home Edition HVM, I get yellow
exclamation mark besides NVIDIA Geforce 8400 GS in Device Manager.
NVIDIA Geforce 8400 GS in Device Manager reports:
1) Windows has stopped this device
2013 Feb 22
48
[PATCH v3 00/46] initial arm v8 (64-bit) support
This round implements all of the review comments from V2 and all patches
are now acked. Unless there are any objections I intend to apply later
this morning.
Ian.