Displaying 20 results from an estimated 400 matches similar to: "G80"
2007 Nov 19
1
[G80] patch to renouveau.xml
I have some things to add to renouveau.xml (NV50_MEMORY_TO_MEMORY_FORMAT
high address words, and NV50COMPUTE object 0x50c0), see the attached patch
Greetings,
Wladimir
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.freedesktop.org/archives/nouveau/attachments/20071119/f65ec979/attachment.htm
-------------- next part --------------
A non-text
2010 Jul 22
1
Is it posible to resume the TiNDC's?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
The last TiNDC is more than a year old, and if I remember right, the
previous editor isn't around to make a new one, so i was thinking about
doing it myself.
I think the TiNDC's were very interesting to know the current status of
things in a more enjoyable and friendly way than the status matrix.
I know they were a summary of the channel
2007 Nov 11
1
nv50 microcode/shader format
Hello there,
With the use of CUDA and ptx I managed to make a disassembler for at least
one of the nv50 microcode/shader formats. This might come in handy for some
people, hence I'm posting it here:
http://www.cs.rug.nl/~wladimir/decuda/
I'm not yet sure if pixel/vertex shaders use the same instruction format as
the compute shaders used by CUDA, but you'd think so, as nv50 is
2008 Mar 07
1
Current state - how to get gallium-stuff running?
Hi,
As the last tindc said something about 3d really working on nv4x, I wanted to
try that ( on a NV43). Built nouveau/mesa -> gallium-0.1 branch of mesa and
git head of libdrm, kernel-drm and xf86-video-nouveau.
glxinfo says:
nouveau DRI driver expected DDX version 1-1.2.x but got version 0.0.10
So I assume I need some other branch of xf86-video-nouveau (?)
I asked in irc but was pointed
2008 Jan 30
1
Xbox Support
Hi
I'm sure I remember reading (possibly on the TiNDC) that Xbox support
was planned for the Nouveau driver
I was just wondering how this was going.
I've got my Xbox out again and would be happy to test code to get 3D
working on it
Cheers
Mike
2009 Jan 17
2
World Of Goo via Wine 1.01
According to the below url World of Goo is possible via WINE.
http://appdb.winehq.org/objectManager.php?sClass=version&iId=14072
My environment..
Ubuntu 2.6.27-11-generic #1 SMP Thu Jan 8 08:38:38 UTC 2009 x86_64 GNU/Linux
Video: Gefore 4800m GS
Wine 1.0.1
I on the other hand get the below errors. I'm a WINE newbie so any help would be great!
STDOUT error
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)
2008 Jun 22
0
Initial import of NV50/g80 kernel modesetting code.
I've been talking about it for some time, but now it actually does
something, so comitted it. I always said i wouldn't use the randr-1.2
clone stuff and i didn't, so you can use this as an example how it
could also be done.
What doesn't work (for sure):
lvds with no ddc support
no fbcon yet
output/connector properties
Notes:
the bare minimum of bios code was imported (eventually
2005 Aug 16
3
how to reshape an array avoiding for loops
Dear r-help,
I have an array a1 with dimensions [1:660,1:65,1:25]
I would like the first dimension to be the last one.
That is I want and array [1:65,1:25,1:660]
The only way to do this, I know, is
tmp.a<-array(dim=dim(a1)[c(2,3,1)])
for(i in 1:dim(a1)[1]) tmp.a[,,i]<-a1[i,,]
a1<-tmp.a
rm(tmp.a)
Is it possible to avoid 'for' loop here?
Thank you!
---
2012 Jan 07
2
DLL Errors running Cateia Games' "Hotel"(OGRE3D-based game)
I installed Hotel from the MumboJumbo CDROM edition of Hotel, but when I tried running it, it crashes with the following errors:
Code:
err:module:import_dll Library MSVCP90.dll (which is needed by L"C:\\Mumbo\\JumboHotel\\boost_python-vc90-mt-1_37.dll") not found
err:module:import_dll Library boost_python-vc90-mt-1_37.dll (which is needed by
2009 Dec 11
2
[PATCH 1/2] exa: Pre-G80 tiling support.
For now pixmaps will only be tiled if driver pixmaps are being used
and we're told to with the NOUVEAU_CREATE_PIXMAP_TILED usage hint.
Signed-off-by: Francisco Jerez <currojerez at riseup.net>
---
src/nouveau_exa.c | 31 ++++++++++++++++++++-----------
src/nv50_exa.c | 6 +++---
src/nv50_xv.c | 2 +-
src/nv_proto.h | 2 +-
src/nv_type.h | 1 +
5 files
2003 May 13
1
several regression lines in panel of xyplot (trellis graphics)
Dear r-help,
I need to draw xyplot() graphs with several regression lines:
one line for the whole range of x (the variable on the horizontal
axis) and two additional lines for subranges of x.
Is it possible to make first regression line (panel.lmline(x,y,...);)
to be drawn on the whole graph
and regression lines of the subsets to be drawn only over their subsets?
I have defined
2003 May 08
3
again troubles with lattice
Dear r-help community,
Thank you for your previous answers!
Now I have strange behaviour of the lattice library funcitons.
They do not draw graphics in the file when called from the script.
I created the script file, called, for example, "a.R", containing
the following
library(lattice);
trellis.device(device="png",
filename="a.png",
2005 May 20
5
getting the unique values and counts from a vector
Hi all,
>From a vector, I want to get the unique values and the counts of these
unique values in the vector. For example,
x<-c(2 ,1 ,2, 1, 4 ,2 ,1, 4 ,1 ,1)
xu<-unique(x)
xn<-numeric(length(xu))
for (i in 1:length(xu)) {xn[i]<-length(which(x==xu[i]))}
There must be a very much simpler method of doing this. Can somebody
direct me to the functions that I must read in order to do
2003 Apr 16
2
layout.show()
Dear r-help,
Please, be so kind, tell me what does mean the parameter of layout.show()?
I use R 1.6.2... Windows NT 4.0
Unfortunately I cannot understand phrases from the help
"n: number of figures to plot."
what figures?
"`layout.show(n)' plots (part of) the current layout, namely the
outlines of the next `n' figures."
what figures?
2003 May 27
2
R doesn't remove temporary dirs and about bugreport
Dear r-help,
1. I always find in TEMP directory subdirs named like Rtmp#####
where ##### denote a number.
Obviously, they are created by R and are not removed by it after
finish.
Why?
I use R 1.7.0 and Windows NT Workstation 4.0, English. SP 6a.
2. Is it possible to get known whether my bug report was received?
I've sent to r-bugs at biostat.ku.dk the following but it seemed
2003 May 11
2
what does boxplot draw?
Dear r-help,
Unfortunately I cannot find in the documentation what determines
ranges of a 'box' in the box-and-whisker plot.
It is said in "Simple R" (http://www.math.csi.cuny.edu/Statistics/R/simpleR)
that they are 1st and 3rd Qus usually.
I tried to add to boxplot lines with (quantile(x,probs=0.25)), but
lines do not coincide with edges of boxes.
2003 May 06
5
xyplot (lattice), strip.default
Dear r-help,
I've got data of the following structure
1979 93.428747 0
1979 87.298608 20
1979 78.506340 40
...
1979 45.567890 340
1980 60.815289 0
1980 49.630904 20
1980 24.981362 40
...
The first column is year and the last one is the longitude.
I need a set of graphs showing the dependence of the middle value on
the longitude, for each year, situated one blow the other.
2005 May 20
2
Lattice: it seems, a bug in draw.key function
Dear r-help,
Now I am drawing graphs with xyplot function.
In order to place a legend under the plots I use the key argument in
the xyplot function.
One of the 'key' components is 'divide', which defines a number of
points on the each line of the legend. The default is 3 points.
I would like a single point, so I set divide = 1.
Call to xyplot didn't produce
2008 Dec 13
3
Nouveau wiki translations
Hi all,
it seems that the translations in the Nouveau wiki have been rotting for
some time. Many translated pages even have a note saying they are not
up to date, which makes me think they are not going to be updated anymore
at all.
I am planning to remove all translation links from FrontPage and FAQ.
I will not remove the pages themselves. If someone wants to come back
and actually maintain a