search for: hpl

Displaying 20 results from an estimated 115 matches for "hpl".

Did you mean: dpl
2008 Nov 06
1
Broken link in OpenVZ page in the Wiki
Dear Srs, In the page: http://wiki.centos.org/HowTos/Virtualization/OpenVZ Section -> "Additional Resources" "Performance evaluation of Xen vs. OpenVZ by HP Labs" link is broken, it points to: http://www.hpl.hp.com/techreports/2007/HPL-2007-59.pdf And the PDF has been moved to: http://www.hpl.hp.com/techreports/2007/HPL-2007-59R1.pdf Regards, -- Santi Saez http://woop.es
2011 Aug 01
0
[LLVMdev] Reviving the new LLVM concurrency model
C++ and Java memory models impose restrictions for locks and unlocks, such as a thread that releases a lock must acquired the lock, or the number of locks must be larger than the number of unlocks in the same thread... for enabling some optimizations, for example, simplifying trylocks (http://www.hpl.hp.com/techreports/2008/HPL-2008-56.html), and moving some instructions inside lock acquires (http://www.hpl.hp.com/techreports/2005/HPL-2005-217R1.html). What is the rationale that the LLVM memory model ignores such restrictions? On Mon, Jul 18, 2011 at 8:22 PM, Eli Friedman <eli.friedman at...
2013 Aug 22
13
Lustre buffer cache causes large system overhead.
...rge enough. In our case we run find . -print0 -type f | xargs -0 cat > /dev/null on the client until the buffer cache reaches ~15-20GB. (The lustre file system has lots of small files so this takes up to an hour.) Kill the find process and start a single node parallel application, we use HPL (high performance linpack). We run on all 16 cores on the system with 1GB ram per core (a normal run should complete in appr. 150 seconds.) The system monitoring shows a 10-20% system cpu overhead and the HPL run takes more than 200 secs. After running "echo 3 > /proc/sys/vm/drop_cac...
2010 Sep 17
0
[LLVMdev] Accurate garbage collection
...now I'll just get it > wrong. > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev You can try Hans Bohem Garbage collector. http://www.hpl.hp.com/personal/Hans_Boehm/gc/
2009 May 16
0
[LLVMdev] RFC: Atomics.h
Hi, You might want to use this: http://www.hpl.hp.com/research/linux/atomic_ops/ Zoltan On Sat, May 16, 2009 at 11:11 PM, Owen Anderson <resistor at mac.com> wrote: > Some of you may have noticed that I addedd include/llvm/System/Atomics.h to > the repository briefly, which will be used for adding sup...
2006 Feb 07
1
Reading in FORTRAN data using R
...;list" style. Please note, this is NOT binary data, but text output with no FORMAT. For example: My FORTRAN code writes out: open(unit=30,name=fnout,status='old') write(30,'(a20)') fnmod write(30,'(a20)') fnstr write(30,*) nfault,hpl,vplx,vply,taua,tauf,amuu, & tminn,tstepp,itime,TBIS,bulkms,ntm,ncycle,pdcy write(30,*) ptrad write(30,'(a1)') respfb write(30,*) (timi(n), n=1,nfault) write(30,*) (taub(n), n=1,nfault) write(30,*) (delts(n), n=1,nf) write(30,*) (cfr(n), n=1,...
2013 May 15
0
[PATCH] Fix dead links and update news
....e. a constant value throughout. The signal is run-length encoded and added to the stream. </li> <li> - <b>Fixed linear predictor</b>. FLAC uses a class of computationally-efficient fixed linear predictors (for a good description, see <a href="http://www.hpl.hp.com/techreports/1999/HPL-1999-144.pdf">audiopak</a> and <a href="http://svr-www.eng.cam.ac.uk/~ajr/GroupPubs/Robinson94-tr156/index.html">shorten</a>). FLAC adds a fourth-order predictor to the zero-to-third-order predictors used by Shorten. Since the predic...
2010 Sep 02
2
err: Could not run Puppet configuration client: Invalid parameter stage at ...
Hi, I am getting the following error on my CentOS clients; err: Could not run Puppet configuration client: Invalid parameter stage at /etc/puppet/manifests/nodes.pp:32 The server is CentOS 5.4 with packages from the epel-puppet repos; # rpm -qa | grep puppet puppet-dashboard-1.0.3-3 puppet-2.6.1-0.3.rc3.el5 puppet-server-2.6.1-0.3.rc3.el5 The clients are; # rpm -qa | grep puppet
2013 May 15
0
[PATCH 2/2] Fix dead links and update news
....e. a constant value throughout. The signal is run-length encoded and added to the stream. </li> <li> - <b>Fixed linear predictor</b>. FLAC uses a class of computationally-efficient fixed linear predictors (for a good description, see <a href="http://www.hpl.hp.com/techreports/1999/HPL-1999-144.pdf">audiopak</a> and <a href="http://svr-www.eng.cam.ac.uk/~ajr/GroupPubs/Robinson94-tr156/index.html">shorten</a>). FLAC adds a fourth-order predictor to the zero-to-third-order predictors used by Shorten. Since the predic...
2009 May 17
3
[LLVMdev] RFC: Atomics.h
Surprisingly enough, libatomic_ops doesn't define just a hardware memory fence call as far as I can tell. --Owen On May 16, 2009, at 3:00 PM, Zoltan Varga wrote: > Hi, > > You might want to use this: > > http://www.hpl.hp.com/research/linux/atomic_ops/ > > Zoltan > > On Sat, May 16, 2009 at 11:11 PM, Owen Anderson <resistor at mac.com> > wrote: > Some of you may have noticed that I addedd include/llvm/System/ > Atomics.h to the repository briefly, which w...
2011 Jul 19
8
[LLVMdev] Reviving the new LLVM concurrency model
There was some discussion a while back about adding a C++0x-style memory model and atomics for LLVM a while back (http://thread.gmane.org/gmane.comp.compilers.llvm.devel/31295), but it got stalled. I'm going to try and restart progress on it. Attached are two patches; the first adds a section to LangRef with just the memory model, without directly changing the documentation or implementation
2009 May 16
6
[LLVMdev] RFC: Atomics.h
Some of you may have noticed that I addedd include/llvm/System/ Atomics.h to the repository briefly, which will be used for adding support for threading in LLVM. I have tried to provided appropriate implementations of the atomic ops (currently memory fence and CAS) for platforms we care about, but my knowledge of these, and my ability to test them, is limited. So, please, if you run on
2003 Mar 02
1
model.frame.default problem in function definition
...10,z=1:10,y=(1:10)^2+10*(1:10)) tfun(dat) generates the output Start: AIC= 43.67 y ~ x + z Error in model.frame.default(formula = y ~ z, data = dat2, drop.unused.levels = TRUE) : Object "dat2" not found Any help or pointers gratefully accepted. Thanks, Darryl Greig (darryl at hpli.hpl.hp.com)
2008 Jul 15
2
[LLVMdev] addrspace attribute and intrisics
If you're interested in the evolution of C++'s memory model, here are some papers on the topic: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2664.htm http://open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2429.htm http://open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2427.html A working draft for the next C++ standard is also available:
2002 Mar 22
2
Trusted HP-UX 10.26
I haven't noticed any work on Trusted HP-UX 10.26 in the archives (then again maybe I missed it). I have made changes to get sshd working on trusted HP-UX, ssh already worked. I can supply a patch, but before I did I was wondering if it is best to send the patch to this list, or file it as a bug report? The patch is just around 6k, and includes changes to configure.ac and acconfig.h, allong
2009 May 17
0
[LLVMdev] RFC: Atomics.h
...son <resistor at mac.com> wrote: > Surprisingly enough, libatomic_ops doesn't define just a hardware memory > fence call as far as I can tell. > --Owen > On May 16, 2009, at 3:00 PM, Zoltan Varga wrote: > > Hi, > >   You might want to use this: > > http://www.hpl.hp.com/research/linux/atomic_ops/ > >                              Zoltan > > On Sat, May 16, 2009 at 11:11 PM, Owen Anderson <resistor at mac.com> wrote: >> >> Some of you may have noticed that I addedd include/llvm/System/Atomics.h >> to the repository briefly,...
2019 Jul 22
1
[PATCH] MAINTAINERS: Update my email address
...+++ b/.mailmap @@ -98,6 +98,7 @@ Jason Gunthorpe <jgg at ziepe.ca> <jgunthorpe at obsidianresearch.com> Javi Merino <javi.merino at kernel.org> <javi.merino at arm.com> <javier at osg.samsung.com> <javier.martinez at collabora.co.uk> Jean Tourrilhes <jt at hpl.hp.com> +<jean-philippe at linaro.org> <jean-philippe.brucker at arm.com> Jeff Garzik <jgarzik at pretzel.yyz.us> Jeff Layton <jlayton at kernel.org> <jlayton at redhat.com> Jeff Layton <jlayton at kernel.org> <jlayton at poochiereds.net> diff --git a...
2010 Sep 17
6
[LLVMdev] Accurate garbage collection
On 17/09/10 09:55, Pedro Ferreira wrote: > As I understand it, LLVM simply gives you support for garbage collectors > that you have to implement yourself and link into the final binary, > similar to what C's malloc does (it's a library call). The issue with > GC's is that they need to be provided info about the stack, thats where > LLVM's support comes in. Are there
2009 Mar 19
1
Prediction-class ROCR
Hi, I'm involved in a bioinformatics project at my university, and we're doing a comparison paper between some methods of classification of nc-RNA. I've been encharged of ploting the ROC curves' graphs. But I'm new on working with R and I'm having some difficulty with the prediction-class. I don't get where the values of ROCR.simple$predictions, for example, came from
2008 Apr 27
2
Random reboots with Xen 3.2.1
...re the reboot. The worst I have seen are a couple of "Timer went backwards" error messages but they don''t always show up in the logs. Anything else I should be poking at to figure out why this might be happening and if there are any potential fixes? Thanks, Niraj -- http://www.hpl.hp.com/personal/Niraj_Tolia/ _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel