search for: fui

Displaying 20 results from an estimated 38 matches for "fui".

Did you mean: fi
2010 Sep 07
10
What is the maximum number of resource pools allow in Xen Cloud Platform?
Hi, I am interested to know the maximum number of resource pools that allow in Xen Cloud Platform. I cannot find any maximum number indicated in the documentation. Thank you, Wong Fui Fui _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2009 Jul 28
0
[PATCH 2/8] nv50: fix viewport transform
...o_new(12, 0); + so_method(so, tesla, NV50TCL_VIEW_VOLUME_CLIP_CTRL, 1); if (!bypass) { - so_method(so, tesla, NV50TCL_VIEWPORT_UNK1(0), 3); + so_data(so, 0x0000); + y_translate -= nv50->viewport.translate[1]; + so_method(so, tesla, NV50TCL_VIEWPORT_TRANSLATE(0), 3); so_data (so, fui(nv50->viewport.translate[0])); - so_data (so, fui(nv50->viewport.translate[1])); + so_data (so, fui(y_translate)); so_data (so, fui(nv50->viewport.translate[2])); - so_method(so, tesla, NV50TCL_VIEWPORT_UNK0(0), 3); + so_method(so, tesla, NV50TCL_VIEWPORT_SCALE(0), 3); s...
2009 Jul 12
0
[PATCH 2/3] nv50: fix viewport transform
...{ unsigned bypass; + struct pipe_viewport_state viewp; if (!nv50->rasterizer->pipe.bypass_vs_clip_and_viewport) bypass = 0; @@ -277,25 +283,42 @@ scissor_uptodate: so = so_new(12, 0); if (!bypass) { - so_method(so, tesla, NV50TCL_VIEWPORT_UNK1(0), 3); - so_data (so, fui(nv50->viewport.translate[0])); - so_data (so, fui(nv50->viewport.translate[1])); - so_data (so, fui(nv50->viewport.translate[2])); - so_method(so, tesla, NV50TCL_VIEWPORT_UNK0(0), 3); - so_data (so, fui(nv50->viewport.scale[0])); - so_data (so, fui(-nv50->viewport.scale...
2009 Apr 10
0
[PATCH/Gallium] nv50_clear again (might work better)
..., double depth, unsigned stencil) @@ -40,26 +47,32 @@ nv50_clear(struct pipe_context *pipe, unsigned buffers, return; if (buffers & PIPE_CLEAR_COLOR) { - BEGIN_RING(chan, tesla, NV50TCL_CLEAR_COLOR(0), 4*fb->nr_cbufs); - for (i = 0; i < fb->nr_cbufs; i++) { - OUT_RING (chan, fui(rgba[0])); - OUT_RING (chan, fui(rgba[1])); - OUT_RING (chan, fui(rgba[2])); - OUT_RING (chan, fui(rgba[3])); - } - mode |= 0x3c; + assert(fb->nr_cbufs > 0); + BEGIN_RING(chan, tesla, NV50TCL_CLEAR_COLOR(0), 4); + OUT_RING (chan, fui(rgba[0])); + OUT_RING (chan, fui(rgba[1]))...
2009 Dec 25
0
[MESA PATCH 5/5] nv50: update after nouveau_class.h update
...IGH(i), 2); + so_method(so, screen->tesla, NV50TCL_VERTEX_ARRAY_LIMIT_HIGH(i), 2); so_data (so, 0x000000ff); so_data (so, 0xffffffff); } - so_method(so, screen->tesla, NV50TCL_DEPTH_RANGE_NEAR, 2); + so_method(so, screen->tesla, NV50TCL_DEPTH_RANGE_NEAR(0), 2); so_data (so, fui(0.0)); so_data (so, fui(1.0)); @@ -438,7 +437,7 @@ nv50_screen_create(struct pipe_winsys *ws, struct nouveau_device *dev) so_data (so, 1); /* activate first scissor rectangle */ - so_method(so, screen->tesla, NV50TCL_SCISSOR_ENABLE, 1); + so_method(so, screen->tesla, NV50TCL_SCISS...
2010 Sep 30
1
What is the maximum resource pools that allow to set up using Xen Cloud Platform
Hi, I am interested to know what is the maximum number of resource pools that allow if using Xen Cloud Platform? I cannot find any indicate number of the maximum resource pools in the documentation. Thank you, Wong Fui Fui _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2005 Oct 26
1
Otra cuestion - other Q!
Veo que hay gente que habla castellano! ok! les paso a contar lo que hice: Directamente fui al site y baj? la ultima version, que se muestra arriba a la derecha, o sea los fuentes. ACLARO QUE NO SOY EXPERTO EN LINUX NI MUCHO MENOS, aunque hace mas de 7 a?os que voy y vengo.... jajaja desempaquet? todo, segui las instrucciones del readme, fui a tools, ejecut? el instalador, luego me com...
2018 Jan 19
5
API de AEMET con R?
...e sirve a algiuen. El 19 de enero de 2018, 9:12, Jaume Tormo <jtormo en unizar.es> escribió: > Estimados errer en s, > > Antes de nada me presento, soy Jaume Tormo, trabajo en la universidad de > Zaragoza, en la Escuela Politécnica Superior en Huesca. Trabajo en > Ecología. Fui usuario de la lista hace unos años y vuelvo de nuevo por aquí. > > > Estoy intentando descargar datos de AEMET Open Data ( > https://opendata.aemet.es/centrodedescargas/inicio), pero no tengo ni la > más remota idea de como usar R para descargar los datos que necesito. En la > web...
2017 Feb 17
2
fechas
.../4/2014.Sin embargo, el abrir la planilla, los valores de fechas se invirtieron a "4/27/2014" Yo necesito los valores en formato y-m-d, por ende intenté hacerlo en Excel, sin embargo me encontré con la sorpresa que esa "inversión de formato" es un error que Excel no reconoce. Me fui a R, e intenté usando.. STRPTIME-.... LUBRIDATE..etc. Sin embargo, no obtuve resultados ya que en realidad el dato de la fecha en un "error y no una fecha". La pregunta es la siguiente...existe alguna forma de desagregar la fecha quizás como carácter o factor, para después darle formato...
2009 Dec 30
4
[PATCH 1/3] nv50: remove vtxbuf stateobject after a referenced vtxbuf is mapped
- This avoids problematic "reloc'ed while mapped" messages and some associated corruption as well. Signed-off-by: Maarten Maathuis <madman2003 at gmail.com> --- src/gallium/drivers/nouveau/nouveau_screen.c | 21 +++++++++++++++++++++ src/gallium/drivers/nouveau/nouveau_screen.h | 3 +++ src/gallium/drivers/nouveau/nouveau_stateobj.h | 13 +++++++++++++
1999 Oct 20
3
patch for tinc-0.3
...ap0 hw ether fe:fd:c0:a8:0a:02 ifconfig tap0 up # route add -net 193.78.1.0/24 gw 193.78.1.82 route add -host 193.78.1.4 gw 193.78.1.82 route add -host 193.78.1.9 gw 193.78.1.82 route add -host 193.78.1.15 gw 193.78.1.82 route add -host 193.78.1.18 gw 193.78.1.82 /usr/local/sbin/tincd -n fui-vpn # /usr/local/sbin/tincd -d -d -d -d -d -d -n fui-vpn /usr/local/sbin/tincsched & touch /var/lock/subsys/tinc echo done ;; starttinc) echo -n "Starting up tinc only... " /bin/rm -f /core # route add -net 193.78.1.0/24 gw 193.78.1.82 route add -host 193.78.1...
2017 Mar 22
3
GLM con clusters
Gracias a todos por sus respuestas, perdón si no fui muy claro. Lo que intento replicar es un análisis realizado en Stata, tengo que hacer los mismos cálculos pero en el r. En Stata lo que se hizo fue: xi: logistic i.coord i.v11_sexo, vce (cluster red) *Vce (cluster clustvar) especifica que los errores estándar permiten la correlación intragrupo...
2007 Oct 26
1
Fwd: Ajuda em R
An embedded and charset-unspecified text was scrubbed... Name: n?o dispon?vel Url: https://stat.ethz.ch/pipermail/r-help/attachments/20071026/5710517e/attachment.pl
2009 Dec 15
1
Starting with R and distributions graphics
HI, i'm really new of R and i need some help. I have to describe some distributions for some dices throw: - launching 3 dices i need the distribution of the sum of the two higher values - launching 4 dices i need the distribution of the occurrences of the same value possibly i need a way to compare the two distribution adding the fourth dice to the first without summing it (only for
2011 Dec 05
0
Problemas al cargar Rcmdr
...pero hace unos días se me dio por probar Sabayon, puesto que andaba en busca de algo rolling release y no quería Arch. La cosa, para hacerla corta, es que instalé Sabayon con KDE. Conseguí arreglar un RStudio (se puede usar la versión "portable" para Debian que anda bien) pero cuando fui a lanzar RCommander me surgió este error: library(Rcmdr) Loading required package: tcltk Error : .onLoad failed in loadNamespace() for 'tcltk', details: call: fun(libname, pkgname) error: Tcl/Tk support is not available on this system Además: Mensajes de aviso perdidos S3 methods ?$.tclva...
2009 Sep 12
0
[PATCH 11/13] nv50: add support for light-twoside
...sterizer_state_create(struct pipe_context *pipe, so_method(so, tesla, 0x1684, 1); so_data (so, cso->flatshade_first ? 0 : 1); + so_method(so, tesla, NV50TCL_VERTEX_TWO_SIDE_ENABLE, 1); + so_data (so, cso->light_twoside); + so_method(so, tesla, NV50TCL_LINE_WIDTH, 1); so_data (so, fui(cso->line_width)); so_method(so, tesla, NV50TCL_LINE_SMOOTH_ENABLE, 1); -- 1.6.3.3 --------------010208090904000401070505 Content-Type: text/plain; name="0012-nv50-add-support-for-point-size-per-vertex.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename*...
2020 Jul 12
2
No se inicia R-studio
Al instalar el R funciona, pero el r-Studio al abrirlo despu?s de la instalaci?n no se inicia y se queda cargando al final aparece que tardo mucho y no hay conexi?n. Gracias por la ayuda Saludos cordiales Ruth Madera Sandoval [[alternative HTML version deleted]]
2009 May 11
1
[PATCH] nv50/gallium: small fix for nv50_transfer_rect_m2mf (sy <-> dy)
...t.c, because of Y_0_TOP we get inverted viewport parameters, so the translations are wrong there, too, the image doesn't appear flipped though becasuse scale[1] gets negated again in nv50_state_validate (but the translation - inconsistenly - remains unchanged). Now one could do so_data (so, fui(-(nv50->viewport.translate[1] - nv50->framebuffer.height)); as well, which would make the viewport transformation correct, but the ST still outputs the wrong vertex coordinates for clear_with_quad. To fix both things, one could just let st_fb_orientation in st_context.h return Y_0_BOTTOM, but...
2010 Jul 05
3
Problemas para graficar barras de error y fechas en el eje-x (SOLUCIONADO)
...ot;), "%d/%m"))* # Es importante buscar el valor de "origin" adecuado, porque al transformar entre fechas de tipo Julian y Calendario, la # transformación se hace a partir de una fecha de origen que, aparentemente no es la misma para cada programa (Go-oo, R, MS-Excel, etc.) # yo fui probando hasta que llegue a que el origen que tenía que usar era 30/12/1899, suele ser 01/01/1900, no sé porque en este # caso lo tuve que atrasar dos días. # Ahora armo los ejes del gráfico *par(las=2, mgp=c(4, 1, 0), mai=c(1.2,1.2,0.5,0.5)) plot(ejejx,ejey, type="n", xaxt="n",...
2009 Sep 12
0
[PATCH 13/13] nv50: add support for point sprites
....c b/src/gallium/drivers/nv50/nv50_state.c index 20d9f43..6612e72 100644 --- a/src/gallium/drivers/nv50/nv50_state.c +++ b/src/gallium/drivers/nv50/nv50_state.c @@ -296,6 +296,9 @@ nv50_rasterizer_state_create(struct pipe_context *pipe, so_method(so, tesla, NV50TCL_POINT_SIZE, 1); so_data (so, fui(cso->point_size)); + so_method(so, tesla, NV50TCL_POINT_SPRITE_ENABLE, 1); + so_data (so, cso->point_sprite); + so_method(so, tesla, NV50TCL_POLYGON_MODE_FRONT, 3); if (cso->front_winding == PIPE_WINDING_CCW) { so_data(so, nvgl_polygon_mode(cso->fill_ccw)); -- 1.6.3.3 -----...