search for: holloway

Displaying 20 results from an estimated 54 matches for "holloway".

2007 Apr 04
2
[LLVMdev] Graph Coloring Regalloc
...unusable for most architectures. > One > > idea that can be used for improving handling of irregular > architectures > > is described in the "A Generalized Algorithm for Graph-Coloring > > Register Allocation" by Michael D. Smith, Norman Ramsey and Glenn > > Holloway: > > http://www.eecs.harvard.edu/~nr/pubs/gcra-abstract.html > > > > There exists also an implementation of the algorithm described in > the > > paper for the SUIF compiler suite. I was planning to port it to > LLVM, > > but a bit later. > > Are you sayi...
2016 Oct 13
4
Outlook 2010 woes
On Thu, 13 Oct 2016 08:36:23 -0500, Bryan Holloway stated: >I also extended the "Server Timeout" setting in OT2010 to 10 minutes, >which doesn't seem to help either. (!) Outlook 2010 is a very old version. Why not update to the 2016 version. I am running it without any problems. If you do update, remember to remove the old ve...
2016 Oct 28
3
Outlook 2010 woes
...rsion" "14.0") 8. Server sends an ACK ... and then there's this very curious four-second delay. 9. Server then sends out new CAPABILITIES, and everything proceeds thereafter as normal and zippy and fast. Does this shed any light on the subject? On 10/13/16 11:21 AM, Bryan Holloway wrote: > On 10/13/16 11:01 AM, Aki Tuomi wrote: >> >>> On October 13, 2016 at 6:52 PM Konstantin Khomoutov >>> <flatworm at users.sourceforge.net> wrote: >>> >>> >>> On Thu, 13 Oct 2016 10:35:14 -0500 >>> Bryan Holloway <bryan...
2016 Oct 13
4
Outlook 2010 woes
On 10/13/16 9:07 AM, Aki Tuomi wrote: > >> On October 13, 2016 at 4:55 PM Jerry <jerry at seibercom.net> wrote: >> >> >> On Thu, 13 Oct 2016 08:36:23 -0500, Bryan Holloway stated: >> >>> I also extended the "Server Timeout" setting in OT2010 to 10 minutes, >>> which doesn't seem to help either. (!) >> >> Outlook 2010 is a very old version. Why not update to the 2016 version. >> I am running it without any proble...
2007 Apr 03
0
[LLVMdev] Graph Coloring Regalloc
...rrectly, which makes it rather unusable for most architectures. One > idea that can be used for improving handling of irregular architectures > is described in the "A Generalized Algorithm for Graph-Coloring > Register Allocation" by Michael D. Smith, Norman Ramsey and Glenn > Holloway: > http://www.eecs.harvard.edu/~nr/pubs/gcra-abstract.html > > There exists also an implementation of the algorithm described in the > paper for the SUIF compiler suite. I was planning to port it to LLVM, > but a bit later. Are you saying the SUIF allocator implements the Smith/Ra...
2001 Mar 15
3
Two Simple Questions (Multi Home)
...y NT4 Server to be the local master browser, the entry "__MSBROWSE__-[01h]" can be found in the WINS server database. However, if I let the Samba server become the local master browser, there is no "__MSBROWSE__" entry. Has anyone else noticed this? Is this a problem?? Julie Holloway T/L 444 - 0056, ext (919) 254 - 0056 IBM Storage Networking email: jhllwy@us.ibm.com
2007 Apr 03
2
[LLVMdev] Graph Coloring Regalloc
...register classes correctly, which makes it rather unusable for most architectures. One idea that can be used for improving handling of irregular architectures is described in the "A Generalized Algorithm for Graph-Coloring Register Allocation" by Michael D. Smith, Norman Ramsey and Glenn Holloway: http://www.eecs.harvard.edu/~nr/pubs/gcra-abstract.html There exists also an implementation of the algorithm described in the paper for the SUIF compiler suite. I was planning to port it to LLVM, but a bit later. At the moment I'm working on the implementation of a linear scan register allo...
2007 Apr 09
2
[LLVMdev] Register Alias Sets
...> Sure, but where these comparisons are needed, for example? RAX and > EAX alias sets intersect and that's enough to decide that these regs > can't be assigned simultaneously. One place these comparisons are used is to build a provably optimal register class tree in a Smith/Ramsey/Holloway allocator. Building it algorithmically is portable to all architectures without requiring the person writing the machine-specific parts to care about what the register allocator does. > In general, that what you would check anyway because for some > architectures you won't (theoreticall...
2007 Apr 04
0
[LLVMdev] Graph Coloring Regalloc
Roman Levenstein wrote: > Yes, the SUIF allocator (or at least one of them) implements the > Smith/Ramsey/Holloway algorithm. This is what I understand by looking > at the coloring reggister allocator code in the SUIF distribution. The > SUIF code of this allocator is not very well commented, but I'm pretty > sure. Do you have a pointer? I'm interested in this algorithm as well....
2007 Apr 04
2
[LLVMdev] Graph Coloring Regalloc
Hi Dave, --- David Greene <greened at obbligato.org> wrote: > Roman Levenstein wrote: > > > Yes, the SUIF allocator (or at least one of them) implements the > > Smith/Ramsey/Holloway algorithm. This is what I understand by > looking > > at the coloring reggister allocator code in the SUIF distribution. > The > > SUIF code of this allocator is not very well commented, but I'm > pretty > > sure. > > Do you have a pointer? I'm interested...
2016 Oct 13
2
Outlook 2010 woes
> On October 13, 2016 at 6:52 PM Konstantin Khomoutov <flatworm at users.sourceforge.net> wrote: > > > On Thu, 13 Oct 2016 10:35:14 -0500 > Bryan Holloway <bryan at shout.net> wrote: > > > > [...] > > >> Is there a way to see the IMAP commands coming from the client? > > >> I've tried looking at PCAPs, but of course they're encrypted so I > > >> can't see the actual dialog going on be...
2016 Nov 01
0
Outlook 2010 woes
..._mechanisms" of "digest-md5" enabled along with "plain". This is what was causing the four-second delay, but only with Outlook clients. Everything is working great now across the board. Thanks again to everyone's suggestions. - bryan On 10/27/16 7:09 PM, Bryan Holloway wrote: > So after several days of more troubleshooting, I have some things to > report to the list. > > First and foremost, I have discovered that the issue has nothing to do > with SSL/TLS, which was my earlier suspicion because after doing some > PCAPs I discovered that the tran...
2011 Sep 27
0
[LLVMdev] Greedy Register Allocation in LLVM 3.0
Hi Jakob, Yes. I have references. For example, from the top of my head I would name the following papers: 1)  A Generalized Algorithm for Graph-Coloring Register Allocation by Michael D. Smith, Norman Ramsey and Glenn Holloway      http://www.cs.tufts.edu/~nr/pubs/gcra-abstract.html 2) Register allocation by puzzle solving by Fernando Magno Quintão Pereira, Jens Palsberg      http://llvm.org/pubs/2008-06-PLDI-PuzzleSolving.pdf I think I've seen a few more papers on this topic, but cannot remember them at the moment...
2016 Oct 13
2
Outlook 2010 woes
On 10/13/16 10:23 AM, Konstantin Khomoutov wrote: > On Thu, 13 Oct 2016 09:53:19 -0500 > Bryan Holloway <bryan at shout.net> wrote: > > [...] >> Is there a way to see the IMAP commands coming from the client? I've >> tried looking at PCAPs, but of course they're encrypted so I can't >> see the actual dialog going on between the server and client. I >> d...
2011 Sep 27
3
[LLVMdev] Greedy Register Allocation in LLVM 3.0
On Sep 27, 2011, at 12:11 AM, Leo Romanoff wrote: > Quite some of these register allocation proposals are also able to handle overlapping register classes. That's interesting. Do you have any references? /jakob -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110927/e4b1f13d/attachment.html>
2016 Oct 12
3
Outlook 2010 woes
> Old server: > * Ubuntu 10.04.4 LTS > * Dovecot 2.1.13 > * Maildir++ > * Local auth via passwd/shadow files > > New server: > * Debian GNU/Linux 8.6 > * Dovecot 2.2.13 > * Maildir++ > * Quotas enabled > * LDAP > > Basically what's happening is that users are seeing large delays when > navigating between different IMAP folders. So, for example, user
2016 Nov 02
1
Outlook 2010 woes
On Tue, 1 Nov 2016 18:20:14 -0500 Bryan Holloway <bryan at shout.net> wrote: > In case anyone is interested, we finally found the problem: > > The new (2.2) server had "auth_mechanisms" of "digest-md5" enabled > along with "plain". This is what was causing the four-second delay, > but only with...
2003 Feb 23
2
Extracting the dispersion parameter
...ss that value. Any suggestions? Thanks, Ed ---------- Edward F. Connor Office Phone 415-338-6997 Department of Biology Lab Phone 415-338-3873 San Francisco State University Fax 415-405-0306 1600 Holloway Avenue email: efc@sfsu.edu San Francisco, CA 94132 web: http://userwww.sfsu.edu/~efc ---------- [[alternate HTML version deleted]]
2012 Jun 13
0
ZFS NFS service hanging on Sunday morning problem
...o proceed? > > : > > > : > Many thanks > > : > Tom Crane > > : > > > : > Ps. The email address in the header is just a spam-trap. > > : > -- > > : > Tom Crane, IT support, RHUL Particle Physics., > > : > Dept. Physics, Royal Holloway, University of London, Egham Hill, > > : > Egham, Surrey, TW20 0EX, England. > > : > Email: T.Crane at rhul dot ac dot uk > > > > : Hi Tom, > > > > Hi Cindy, > > Thanks for the followup > > > > : I think SunOS server5 5.10 Generic_14...
2012 Aug 14
2
[LLVMdev] Moving on from Hello World
...at the moment is examine the SelectionDAG, and maybe print out the operations in the notes - can someone point me in the direction of a code fragment that I can drop into the hello world example that might let me achieve such a thing? Thanks, Joe -- Dr Joseph Reddington Computer Science, Royal Holloway For 2012 I have a resolution to write all my email responses within 24-hours - no exceptions. If you've not had a response, there's been a misunderstanding somewhere, and it's worth reminding me. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://...