search for: sdsc

Displaying 20 results from an estimated 44 matches for "sdsc".

Did you mean: dsc
2004 Dec 08
2
rsync wants to copy Identical directory structure and files.
...sync. Perhaps there is a better way. --------- rsync --verbose --dry-run --progress --stats --recursive --times --perms --links /misc/cosmos/srb/tape_vault/dtfMcat.orig /misc/samqfs/srbfs/srb/tape_vault/dtfMcat shows 1150 different files including for example file : dtfMcat.orig/SRBVault/srb.sdsc/95/7/TEST.Sget.c.1549896231.1070989901 But "cmp" and "ls" shows them as same! orion-28% cmp /misc/cosmos/srb/tape_vault/dtfMcat.orig/SRBVault/srb.sdsc/95/7/TEST.Sget.c.1549896231.1070989901 /misc/samqfs/srbfs/srb/tape_vault/dtfMcat/SRBVault/srb.sdsc/95/7/TEST.Sget.c.15498962...
2004 Aug 06
3
cvs changes
> Yeah I did. but just to be sure, I did another update on everything, > rebuilt libshout, installed it in /usr2/friends/geoff, checked the date > stamps on the lib and the header to make sure they actually installed, > reconfigured ices and tried make again. The stream.c errors persist. > look further? I'm almost 100% certain CVS code has the right fixes. Paste an instance
2004 Aug 06
0
ices2: ice-url header patch
...================================================================ RCS file: /usr/local/cvsroot/ices/src/stream.c,v retrieving revision 1.23 diff -u -r1.23 stream.c --- src/stream.c 22 Nov 2002 13:01:34 -0000 1.23 +++ src/stream.c 26 Feb 2003 12:15:14 -0000 @@ -53,7 +53,8 @@ input_module_t *inmod = sdsc->input; int reencoding = (inmod->type == ICES_INPUT_VORBIS) && stream->encode; int encoding = (inmod->type == ICES_INPUT_PCM) && stream->encode; - char *stream_name = NULL, *stream_genre = NULL, *stream_description = NULL; + char *stream_name = NULL, *stream...
2012 Jan 10
2
ices2 memory leak on Debian/ARM (The Darkener)
...we look at distros that this uses, it may be the correct version of the package, but it might actually be a supporting package, like curl or something like that. If you look at the code attached below, it shows there might be some kind of memory leak that needs to be taken care of. This is in the sdsc stream description, which if I'm right, uses shout. (#include <shout/shout.h>) Maybe the error you're finding is because you have special chars, or bad chars, and the version of shout you're using isn't right. When I look at the code below (sorry, can't read machine l...
2004 Aug 06
2
cvs changes
> geoff@bumpy:src$ grep -ine shout_strerror stream.c > 151: shout_strerror(sdsc->conn.error)); > 185: shout_strerror(sdsc->conn.error)); > 208: shout_strerror(sdsc->conn.error)); > > all of these generated errors. Those are correct. Now what does your $prefix/include/shout/shout.h have? Also, I bet you that it's finding your o...
2009 Jul 21
0
help for SSOAP
Hi, I am trying to learn how to from within R access web services. I am also interested in having R be a client and from within R access data on other web services. Specifically the web services I would like to access from within R are “http://water.sdsc.edu/waterOneFlow/NWIS/DailyValues.asmx?WSDL” Therefor, I wrote the following code into R program: > library(SSOAP) > processWSDL("http://water.sdsc.edu/wateroneflow/NWIS/DailyValues.asmx?WSDL", verbose=TRUE) However, this program gave me error messages, like: processing (sub) schem...
2018 Jun 02
2
LoopIdiomRecognize is not recognizing the ctpop idiom
...//... } return c; } Is there any good paper discussing this type of loop idiom recognitions? I found only a vaguely related paper: "Automatic Recognition of Performance Idioms in Scientific Applications", IPDPS 2011 (http://www.sdsc.edu/~allans/ipdps11.pdf). Thank you very much, Alex
2010 Sep 05
1
Greek symbols (again but more complicated)
...t;line") + opts(legend.position="none") Cheers. -------------- John Helly, UCSD / San Diego Supercomputer Center / Scripps Institution of Oceanography, Climate, Atmospheric Science, and Physical Oceanography / +01 760 840 8660 mobile / stonesteps (Skype) / stonesteps7 (iChat) / /www.sdsc.edu/~hellyj
2006 Oct 20
2
Generating start values for nls
Dear R-listers, I would like to know if there is a way to programmatically generate parameter start values for the model y~(a*exp(b*x)+c*exp(d*x)) in R. I've scoured the help files and archives for nls() and similar searches, and have read Fox 2002 - the best advice has been to make estimates from a priori knowledge of the data. However, in the Matlab CurveFit tool, reliable start values are
2008 Aug 26
1
no output when run densityplot...
...tocorrelation Function',' for ',server,'[',status,']',sep=' ') acf(x,lag.max=par2,main=title) grid() dev.off() } summary(x); } servers <- c("komolongma.ece.uprm.edu","sakura.hpcc.jp","fsvc001.asc.hpcc.jp","rocks-52.sdsc.edu","rocks-153.sdsc.edu") status <- c("unsubmitted","active","pending") for (i in servers) { for (j in status) { totalgraphics(i,j) } } [[alternative HTML version deleted]]
2005 Jun 03
3
p-value > 1 in fisher.test()
The following contingency table generates p-value > 1 from fisher.test() ff = c(0,10,250,5000); dim(ff) = c(2,2); fhisher.test(ff)$p.value Sean [[alternative HTML version deleted]]
2005 Jun 03
3
p-value > 1 in fisher.test()
The following contingency table generates p-value > 1 from fisher.test() ff = c(0,10,250,5000); dim(ff) = c(2,2); fhisher.test(ff)$p.value Sean [[alternative HTML version deleted]]
2011 Jan 14
3
RSQLite - How to express(or save) a dataframe as an output?
Dear R helpers Suppose following is an output due to some R process. I wish to save it as a table in 'temp.db' df <- data.frame(x = c(5, 4, 3, 11), y = c(25, 16, 9, 121))     library(RSQLite)     write('** Initializing','')     drv <- dbDriver("SQLite", shared.cache = TRUE)     con <- dbConnect(drv, dbname = "temp.db",
2012 Jan 10
0
ices2 memory leak on Debian/ARM (The Darkener)
...hat this uses, it may be the correct version of the > package, but it might actually be a supporting package, like curl or > something like that. If you look at the code attached below, it shows there > might be some kind of memory leak that needs to be taken care of. This is > in the sdsc stream description, which if I'm right, uses shout. (#include > <shout/shout.h>) There's a Linux memory profiler called: "Valgrind" is a multipurpose code profiling and memory debugging tool for Linux when on the x86 and, as of version 3, AMD64, architectures. It all...
2004 Aug 06
1
ices segmentation fault..
...eived signal SIGSEGV, Segmentation fault. [Switching to Thread 2051 (LWP 8160)] 0x08051103 in resample_clear (s=0x40ef9338) at audio.c:142 142 if (s->buffers[c]) (gdb) bt #0 0x08051103 in resample_clear (s=0x40ef9338) at audio.c:142 #1 0x080504a3 in process_and_send_buffer (sdsc=0x805e448, buffer=0x8156238) at stream_shared.c:149 #2 0x0804d6ca in ices_instance_stream (arg=0x805e448) at stream.c:254 #3 0x080542b9 in _start_routine (arg=0x805e498) at thread.c:655 #4 0x402fa020 in pthread_start_thread () from /lib/i686/libpthread.so.0 btw: The way calling free in resampl...
2010 Oct 21
1
error opening connection 64bit R under win7 64bit
...NrLItUWp1JFhLA+cghU6TbG3X4nB6VSSjbwbeM 3Iyrn0W/jCIwpCYVQ26RCexl15I/9XAzrFG7olJ1qafBrhqZwSZsM0PlNUx6rB4b Ek+f+TBlQWdK10F5iU35LdXOqyu4GsvODR0KYUfXLC6hTa9JWppsMMpHkQHb3pIx nzC4wKKTV5PpOBEzrAK0Jfy4+vP/Xq9sCYZoqfPf3hDl/uxBNtT2p4K02iAy/xVP uCuQXksfZ9MKATx6FJGlbPRq8BISDOP5GFK53dysKDxiLNlFI4UYvMxjCgvAUwc= =sDSC -----END PGP SIGNATURE-----
2008 May 12
1
Advice on compiling R using Intel Compilers? Btw: -c99 is deprecated
...#39;m using OpenSUSE 10.3 on a Intel Q6600 system. First let me explain a few things I did: 1: Download & Install all the Intel Compilers (as well as the Intel Math Kernel Library) (All defaults) 2: Set up my environment variables in profile.d, using the handy scripts found here: https://lists.sdsc.edu/pipermail/npaci-rocks-discussion/2005-November/015012.html (although I added the icpc variable myself). 3: Set up config.site as follows (mostly taken from the guide): CC=icc CFLAGS="-g -O3 -wd188 -ip" CPPFLAGS="-no-gcc" F77=ifort FLAGS="-g -O3" CXX=icpc CXXFLAGS=...
2007 Jan 18
2
memdisk, free memory
...). I found some (rather old) information about this issue. It seems as if this is just what is happening to me: http://syslinux.zytor.com/archives/2003-June/002213.html http://syslinux.zytor.com/archives/2003-June/002215.html http://syslinux.zytor.com/archives/2003-July/002225.html https://lists.sdsc.edu/pipermail/npaci-rocks-discussion/2003-June/002152.html However, this does not seem to be limited to some PXE implementations: I tried 7 different computers (HP, Compaq and Dell; 1-5 years old; 3 different network card vendors). The problem was always the same (with the amount of memory missing...
2004 Aug 13
3
Tutorials on R
Hi !! Is there a good tutorial for the R language ? I really find it hard to find methods in R. Thanks and Cheers ../Murli
2004 Nov 04
2
biplot drawing conc ellipses
Is there an option to draw concentration ellipses in biplots ? It seems really nice to summarize large number of points of each group. Cheers../ Murli