Displaying 20 results from an estimated 29 matches for "pgc".
Did you mean:
pc
2005 Aug 23
1
compile R with Portland Group compiler
...Can anyone advise me on how to compile R with Portland Group
compiler on a Opeteron machine with Red Hat Enterprise Linux WS release
4 installed?
I've edit config.site file to pick portland group compilers instead of
gcc. Here is the list of modified flags:
CC=/usr/pgi/linux86-64/6.0/bin/pgcc
CFLAGS='-g -O2'
CPPFLAGS='-I/usr/pgi/linux86-64/6.0/include
-I/usr/pgi/linux86-64/6.0/include/CC'
F77=/usr/pgi/linux86-64/6.0/bin/pgf77
FLAGS='-O2'
CPICFLAGS=-fPIC
FPICFLAGS=-fPIC
SHLIB_LDFLAGS=-shared
LDFLAGS='-L/usr/pgi/linux86-64/6.0/lib -L/usr/lib64'
CXX=/usr/p...
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...;;; \
host=2.2.2.2 dbname=mailgate user=mailgate_user password=secret sslmode=require
Leading and trailing whitespace in a connect sub-string is ignored.
Basic Operation
---------------
After having split the connect string, the driver creates a connection
structure (struct multi_pgsql_pgc) for each connection specification
contained in that and initiates an asynchronous connect for each. As
the actual connections become ready, they are put onto a (linked list)
(FIFO) queue of 'connections which are ready'. When a query is
submitted to the driver, the first connection structu...
2008 Dec 09
1
errors with compilation
...d packages: yes
The error is :
cc -I../../src/extra/zlib -I../../src/extra/bzip2 -I../../src/extra/
pcre -I. -I../../src/include -I../../src/include -I/usr/local/include
-DHAVE_CONFIG_H -g -O2 -Kieee -c pcre.c -o pcre.o
/opt/cray/xt-asyncpe/1.2/bin/cc: INFO: linux target is being used
PGC-W-0155-64-bit integral value truncated (/usr/include/wctype.h: 108)
PGC-W-0155-64-bit integral value truncated (/usr/include/wctype.h: 109)
PGC-W-0155-64-bit integral value truncated (/usr/include/wctype.h: 110)
PGC-W-0155-64-bit integral value truncated (/usr/include/wctype.h: 111)
PGC/x86-64...
2013 May 11
1
How to repeat 2 functions in succession for 400 times? (microarray data)
...ry(matrixStats)
res<-do.call(cbind,lapply(1:400, function(i) {permutation<-sample(mydata4); (rowMeans(permutation[,1:27])-rowMeans(permutation[,28:38]))/(rowSds(permutation[,1:27])+rowSds(permutation[,28:38]))} ))
?dim(res)
#[1]? 10 400
A.K.
>I want to do permutation test and then get a PGC score 400 times on mydata4 (microarray data)
>
>I use 2 functions as below:
>1. permutation<-sample(mydata4)
>2. PGC <- (rowMeans(permutation[ ,1:27]) - rowMeans(permutation[
,28:38]))/ (rowSds(permutation [,1:27]) + rowSds(permutation [,28:38]))
>
>What should I do to...
2012 Mar 20
0
[LLVMdev] Runtime linker issue wtih X11R6 on i386 with -O3 optimization
...it loads libraries (modules) as
needed. A side effect of that is that they require really lazy binding
because they do (can?) not enforce the load order.
The problem I am seeing is with any optimization higher than -O0 on the
following code:
void
uxa_check_poly_lines(DrawablePtr pDrawable, GCPtr pGC,
int mode, int npt, DDXPointPtr ppt)
{
ScreenPtr screen = pDrawable->pScreen;
UXA_FALLBACK(("to %p (%c), width %d, mode %d, count %d\n",
pDrawable, uxa_drawable_location(pDrawable),
pGC->lineWidth, mode, npt));
if (pGC->lineWidth == 0) {
if (uxa_prep...
2015 Aug 25
1
[Bug 91756] New: glean test vertProg1 segfaulting X server in exaHWCopyNtoN
...info | grep nouveau
# just run the problematic test
bin/glean -t vertProg1
That immediately crashes the X server with a segfault
an attached gdb show following backtrace:
#0 exaHWCopyNtoN (pSrcDrawable=pSrcDrawable at entry=0x55920c1fbb20,
pDstDrawable=pDstDrawable at entry=0x55920c262620,
pGC=pGC at entry=0x55920c2627b0,
pbox=pbox at entry=0x7ffdc7dee340, nbox=nbox at entry=1, dx=dx at entry=13, dy=31,
reverse=0,
upsidedown=0) at ../../exa/exa_accel.c:424
#1 0x00007fb5e5baedcf in exaCopyNtoN
(pSrcDrawable=pSrcDrawable at entry=0x55920c1fbb20,
pDstDrawable=0x55920c262620,...
2007 Nov 26
1
Problem with configure's detection of glob on 2.6.0 (PR#10468)
...2.6.0
OS: SuSe Linux 9.3 x86_64
Submission from: (NULL) (194.80.32.10)
A "vanilla" version of R configures and compiles without a problem on my system.
Switching to using the PGI compiler configures correctly (see the values at the
bottom fo thismessage), but compilation aborts with:
pgcc -I../../src/extra/zlib -I../../src/extra/bzip2 -I../../src/extra/pcre -I.
-I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H
-Mvect=sse -Mscalarsse -Mcache_align -O2 -Kieee -c platform.c -o platform.o
PGC-S-0040-Illegal use of symbol, glob_t (platform.c: 1141)
PGC-W-0...
2015 Jul 14
3
[PATCH] avoid build fail without COMPOSITE
...src/nouveau_dri2.c b/src/nouveau_dri2.c
index f22e319..4398559 100644
--- a/src/nouveau_dri2.c
+++ b/src/nouveau_dri2.c
@@ -142,6 +142,7 @@ nouveau_dri2_copy_region2(ScreenPtr pScreen, DrawablePtr pDraw, RegionPtr pRegio
NVPtr pNv = NVPTR(xf86ScreenToScrn(pScreen));
RegionPtr pCopyClip;
GCPtr pGC;
+ PixmapPtr pPix;
DrawablePtr src_draw, dst_draw;
Bool translate = FALSE;
int off_x = 0, off_y = 0;
@@ -170,9 +171,13 @@ nouveau_dri2_copy_region2(ScreenPtr pScreen, DrawablePtr pDraw, RegionPtr pRegio
}
if (translate && pDraw->type == DRAWABLE_WINDOW) {
- PixmapPtr pPix =...
2009 Mar 20
12
[Bug 20780] New: nouveau corrupts and crashes on 7800gt when NoAccel= false after a few drawing operations
http://bugs.freedesktop.org/show_bug.cgi?id=20780
Summary: nouveau corrupts and crashes on 7800gt when
NoAccel=false after a few drawing operations
Product: xorg
Version: unspecified
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
2009 Oct 15
1
[Bug 24555] New: X server crash
...0x00007f26b197c223 in exaMoveInPixmap_mixed (pPixmap=<value optimized out>)
at exa_migration_mixed.c:120
#10 0x00007f26b1979032 in exaFinishAccess (pDrawable=<value optimized out>,
index=0) at exa.c:421
#11 0x00007f26b1984963 in ExaCheckPolyGlyphBlt (pDrawable=0x15edfd0,
pGC=0x15e43c0, x=906, y=23, nglyph=<value optimized out>,
ppci=<value optimized out>, pglyphBase=<value optimized out>)
at exa_unaccel.c:286
#12 0x00000000004d51ea in damageText (pDrawable=<value optimized out>,
pGC=0x15e43c0, x=906, y=<value optimized out>,...
2015 Jul 14
2
[PATCH] avoid build fail without COMPOSITE
...= (WindowPtr)pDraw;
- off_x = pWin->origin.x;
- off_y = pWin->origin.y;
+ PixmapPtr pPix = get_drawable_pixmap(pDraw);
+ off_x = pDraw->x - pPix->screen_x;
+ off_y = pDraw->y - pPix->screen_y;
}
pGC = GetScratchGC(pDraw->depth, pScreen);
Now I sort of assume that pDraw->x == pWin->origin.x. But... who knows.
-ilia
On Tue, Jul 14, 2015 at 5:46 PM, Emil Velikov <emil.l.velikov at gmail.com> wrote:
> On 14 July 2015 at 22:17, Ilia Mirkin <imirkin at alum.mit.edu> wr...
2005 Jun 23
2
compiling gap on mac os x
...ces/include
-I/usr/local/include -fno-common -g -O2 -c muvar.c -o muvar.o
g77 -fno-common -g -O2 -c pfc.f -o pfc.o
g77 -fno-common -g -O2 -c pfc.sim.f -o pfc.sim.o
gcc-3.3 -no-cpp-precomp
-I/Library/Frameworks/R.framework/Resources/include
-I/usr/local/include -fno-common -g -O2 -c pgc.c -o pgc.o
gcc-3.3 -no-cpp-precomp
-I/Library/Frameworks/R.framework/Resources/include
-I/usr/local/include -fno-common -g -O2 -c whscore.c -o whscore.o
gcc-3.3 -bundle -flat_namespace -undefined suppress -L/usr/local/lib -o
gap.so 2k.o 2ld.o cline.o gc.o gcontrol.o gif.o hap.o hwe.hardy.o...
2009 Jun 12
17
[Bug 22253] New: KMS Nouveau - wfb crash
http://bugs.freedesktop.org/show_bug.cgi?id=22253
Summary: KMS Nouveau - wfb crash
Product: xorg
Version: unspecified
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: major
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
2011 May 20
14
[Bug 37398] New: some applications (like wine) crash nouveau and leave it in an unworkable state
https://bugs.freedesktop.org/show_bug.cgi?id=37398
Summary: some applications (like wine) crash nouveau and leave
it in an unworkable state
Product: xorg
Version: unspecified
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: major
Priority: medium
Component:
2010 Mar 01
1
GPC file
Hi,
I have a tar.gz file. Using $tar -xzvf 'filename', I untarred the file.
However, I found that the content is .PGC files (e.g.
ISCCP.D2.0.GLOBAL.1983.07.99.0000.GPC ).
I have tried to search for analysis of gpc data file in R. I have not been
successful to get a good tip.
I would be pleased if anybody could tell me if gpc analysis is implemented
in R. Is there a program I must first install before being able...
2003 Mar 21
1
problem with "make" command while upgrading to samba 2.2.8
Hi. After I run the ./configure command and run the make command, I get
this message several times and the make fails.
PGC-S-0056-Attempt to call non-function (/usr/include/asm/atomic.h: 94)
Can anyone tell me what's going wrong here?
Thanks. I'm running Linux 7.2 on a Dell Precision 530 workstation.
cp
Christine Parker
US EPA Region 10, OEMI, IRU
206.553.2987
parker.christine@epa.gov
2014 Nov 06
2
diferentes escalas en el X de un grafico con varios paneles
...incluyendo los
datos del control y manteniendo la escala logaritmica en el eje X ?
Alguna idea ?
Haaa aprovecho de preguntar porque aparecen dos marcas tan juntas en el
grafico que adjunto. Este es el codigo con el que lo hice:
xyplot(V1 ~ con | sol + dia
, groups=nca
, data=de.pgc
, auto.key=list(space="right")
, strip = strip.custom(strip.names = TRUE)
, scales=list(x=list(log=10), equispaced.log=FALSE, y = list(at =
1:3), cex=1.2)
, xlab=list("Solvent concentration (mM)", cex=1.2)
, ylab=list("Numbers of samples with cis bo...
2012 Sep 09
4
[Bug 54681] New: Connecting TV to second DVI port of 9600GT card causes GPU lockup and Xorg crash
...timized out>) at
osinit.c:107
#8 <signal handler called>
#9 0x00007f1be12f222b in ?? () from
/usr/lib64/xorg/modules/drivers/nouveau_drv.so
#10 0x00007f1be0269e66 in exaDoPutImage (src_stride=<optimized out>,
bits=0x61fc168 "$\025\f", format=2, h=34, w=1920, y=1920, x=34, pGC=0x3acab10,
pDrawable=0x3b463b0,
depth=<optimized out>) at exa_accel.c:212
#11 exaPutImage (pDrawable=0x3b463b0, pGC=0x3acab10, depth=24, x=0, y=34,
w=1920, h=34, leftPad=0, format=2, bits=0x61fc168 "$\025\f") at exa_accel.c:233
#12 0x0000000000505452 in damagePutImage (pDrawabl...
2011 Feb 10
2
[Bug 34139] New: Seemingly random GUI lock-ups
..._flush () from
/usr/lib/libdrm_nouveau.so.1
#9 0x00007fcc49566165 in exaFillRegionSolid (pDrawable=0x1d58f20,
pRegion=0x17d8f40, pixel=0, planemask=4294967295, alu=3,
clientClipType=<value optimized out>) at exa_accel.c:1038
#10 0x00007fcc49568d31 in exaPolyFillRect (pDrawable=0x1d58f20, pGC=0x100c1a0,
nrect=1, prect=0x7fff285bab60) at exa_accel.c:817
#11 0x00000000004d7c17 in damagePolyFillRect (pDrawable=0x1d58f20,
pGC=0x100c1a0, nRects=1, pRects=0x7fff285bab60) at damage.c:1400
#12 0x00007fcc4956a398 in exaGlyphs (op=3 '\003', pSrc=0x1bae0d0,
pDst=0x1cb8000, maskFormat=0xfb0...
2012 Oct 14
8
[Bug 55980] New: X Segfault on second screen resize
https://bugs.freedesktop.org/show_bug.cgi?id=55980
Priority: medium
Bug ID: 55980
Assignee: nouveau at lists.freedesktop.org
Summary: X Segfault on second screen resize
QA Contact: xorg-team at lists.x.org
Severity: critical
Classification: Unclassified
OS: Linux (All)
Reporter: geaaru at gmail.com