similar to: Broadvoice - Last Straw!

Displaying 20 results from an estimated 1000 matches similar to: "Broadvoice - Last Straw!"

2013 Jul 18
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
There seems to be a lot of interest recently in LTO. How do you see the situation of splitting the IR passes between per-TU processing and multi-TU ("link time") processing? -- Sean Silva -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130717/f5310a6e/attachment.html>
2013 Jul 29
1
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On Mon, Jul 29, 2013 at 4:24 PM, Hal Finkel <hfinkel at anl.gov> wrote: > > Out of curiosity, has anyone tried to optimize the pass ordering in some > (quasi-)automated way? Naively, a genetic algorithm seems like a perfect > fit for this. > This is the closest I've seen: http://donsbot.wordpress.com/2010/03/01/evolving-faster-haskell-programs-now-with-llvm/ However, it
2013 Jul 29
1
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
I personally strong abhor this kind of thing:-) I guess I should be more open-minded. For pre-ipo phase, some passes should not invoke, say, any loop nest-opt, loop version, aggressive loop unrolling, vectorization, aggressive inling. The reasons are they will hinder the downstream optimizers if they kick in early. > Out of curiosity, has anyone tried to optimize the pass ordering in some
2013 Jul 31
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On Jul 31, 2013, at 6:53 AM, Krzysztof Parzyszek <kparzysz at codeaurora.org> wrote: > On 7/30/2013 11:44 PM, Chris Lattner wrote: >> >> The canonical form should be that loop invariants are hoisted. > > The canonical form should not depend on the knowledge as to what is invariant and what isn't. It has more to do with preserving certain "common"
2013 Jul 31
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
>> I'm talking about perfect loop nests, as in the classical fortran loop >> transformation sense. > > Most nest optimizations only apply to perfect nests. Each such > optimization could try to "fix" the nest for its own purposes, but it > would be a lot of duplicated effort. If each L.N.O pass have to fix by itself, I would say this LNO component is
2013 Aug 01
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On 7/31/2013 6:30 PM, Tobias Grosser wrote: > > I can see us following Andrews > suggestion to disable LICM in case a LNO is run and having the LNO > schedule an additional set of cleanup passes later on. The way I was thinking about it is that LICM could be optionally added to the preparation steps, something like requiring loop-closed SSA form for certain transformations. -K --
2013 Jul 31
2
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On 7/30/2013 11:44 PM, Chris Lattner wrote: > > The canonical form should be that loop invariants are hoisted. The canonical form should not depend on the knowledge as to what is invariant and what isn't. It has more to do with preserving certain "common" properties of a loop, such as header, preheader, latch branch, etc. > Optimizations should not depend on perfect
2013 Jul 31
2
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On 7/31/2013 12:20 PM, Chris Lattner wrote: > On Jul 31, 2013, at 6:53 AM, Krzysztof Parzyszek > <kparzysz at codeaurora.org <mailto:kparzysz at codeaurora.org>> wrote: >> On 7/30/2013 11:44 PM, Chris Lattner wrote: >>> >>> The canonical form should be that loop invariants are hoisted. >> >> The canonical form should not depend on the knowledge
2013 Jul 31
1
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On 7/31/13 4:47 PM, Shuxin Yang wrote: > > On 7/31/13 4:30 PM, Tobias Grosser wrote: >> On 07/30/2013 09:44 PM, Chris Lattner wrote: >>> >>> On Jul 30, 2013, at 10:19 AM, Shuxin Yang <shuxin.llvm at gmail.com> >>> wrote: >>> >>>> The pro for running LICM early is that it may move big redundant >>>> stuff out of loop
2013 Jul 31
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On Jul 30, 2013, at 10:19 AM, Shuxin Yang <shuxin.llvm at gmail.com> wrote: > The pro for running LICM early is that it may move big redundant stuff out of loop nest. You never know > how big it is. In case you are lucky , you can move lot of stuff out of > loop, the loop may become much smaller and hence enable lots of downstream optimizations. This sound > to be a big win
2013 Jul 29
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
----- Original Message ----- > > On Jul 27, 2013, at 5:47 PM, Shuxin Yang <shuxin.llvm at gmail.com> > wrote: > > > Hi, Sean: > > > > I'm sorry I lie. I didn't mean to lie. I did try to avoid making > > a *BIG* change > > to the IPO pass-ordering for now. However, when I make a minor > > change to > >
2013 Jul 31
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On 7/31/13 4:30 PM, Tobias Grosser wrote: > On 07/30/2013 09:44 PM, Chris Lattner wrote: >> >> On Jul 30, 2013, at 10:19 AM, Shuxin Yang <shuxin.llvm at gmail.com> wrote: >> >>> The pro for running LICM early is that it may move big redundant >>> stuff out of loop nest. You never know >>> how big it is. In case you are lucky , you can move
2013 Jul 29
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On 7/16/2013 11:38 PM, Andrew Trick wrote: > Since introducing the new TargetTransformInfo analysis, there has been some confusion over the role of target heuristics in IR passes. A few patches have led to interesting discussions. > > To centralize the discussion, until we get some documentation and better APIs in place, let me throw out an oversimplified Straw Man for a new pass pipline.
2013 Jul 30
3
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
On 7/30/13 7:35 AM, Krzysztof Parzyszek wrote: > On 7/29/2013 6:28 PM, Andrew Trick wrote: >> >> You mean that LICM and Unswitching should be left for later? For the >> purpose of exposing scalar optimizations, I'm not sure I agree with >> that but I'd be interested in examples. > > Optimizations like LICM, and unswitching can potentially damage >
2006 Feb 20
0
Asterisk & Broadvoice Incoming Calls Problems
Hi, i'm having problems with broadvoice incoming calls. I can perfectly place calls but my Asterisk Box is having problems when registering with the SIP Proxy. Sometimes it register and the call gets into asterisk, but without sound (seems to be NAT problems) and sometimes its not possible for asterisk to receive the calls. Everything was working great exactly for a month, but a week ago it
2005 Feb 15
1
Help With Broadvoice
Hi all, I am trying to configure my Asterisk PBX to connect to a broadvoice account. I want incoming calls to go to the "s" extension and to ultimately have outbound calls routed through my broadvoice account(s). I cannot for the life of me get this to register correctly. I am currently receiving this message on the console: Failed to authenticate on Register to
2004 Dec 04
2
Broadvoice outbound 404 error
Is anyone else experiencing 404 errors on outbound dial with Broadvoice? I've followed the instructions posted by Broadvoice to configure sip.conf, and inbound calling works fine. Every time I try to dial out, I get a 404 "Not Found" error. Here are the relevant sections from my configs. sip.conf: context=broadvoice-in register =>
2005 Mar 08
0
Sip 400 bad request - broadvoice error
I have searched the list and cannot find a sip 400 solution posted that solves my problem. If anyone has any thoughts or suggestions on the following I would greatly appreciate it. I didn't have this error before Broadvoice made their changes this weekend. Now when I make a call it connects but, I cannot hear anything on the other end... The full message I have is: 8 headers, 0 lines
2005 Aug 19
2
Sudenly unable to get incoming from Broadvoice
So it was all working well and then suddenly I'm unable to get incoming calls from BV. Outgoing is fine. I'm using AAH. I have the following settings; register=9738281625@sip.broadvoice.com:PASSWORD-GOES-HERE:9738281625@sip.broadvoice.com/2208 [broadvoice] username=9738281625 user=phone type=peer secret=PASSWORD-GOES-HERE qualify=1000 port=5060 nat=yes insecure=very
2004 Sep 13
0
Arrgh, Broadvoice, SIP.conf
> > I've tried setting up my sip.conf in two ways: > > > ------------------------------------------------------ > register => [240xxxxxxx]:[my_password]@sip.broadvoice.com > > > [Broadvoice] > type=peer > username=[240xxxxxxx] > fromuser=[240xxxxxxx] > secret=[my_password] > host=sip.broadvoice.com > context=incoming >