search for: cheapli

Displaying 20 results from an estimated 188 matches for "cheapli".

Did you mean: cheaply
2007 Jan 02
3
connecting asterisk (trixbox) to traditional phone lines?
Ok, I have trixbox working how I want. How do I now (cheaply as possibly) get a phone number so people can call it from any number? I am just doing a prototype so just want it done cheaply so I can demo it to my supervisors. Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL:
2002 May 18
3
3D graphics with R
Is there any graphical frontend/secondary programm (freely availible for Windowsor Linux) which can be used with R to display the results of a principle component analysis in 3D space (rotatable!?)? It works with Spotfire, but is there any freely or cheaply availible programm? -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2017 Mar 31
4
Dereferenceable load semantics & LICM
Hi Piotr, On March 31, 2017 at 1:07:12 PM, Piotr Padlewski (piotr.padlewski at gmail.com) wrote: > [snip] > Do I understand it correctly, that it is legal to do the hoist because all > of the instructions above %vtable does not throw? Yes, I think you're right.  HeaderMayThrow is a conservative approximation, and the conservativeness is biting us here. > Are there any plans to
2017 Feb 07
2
Problem ScheduleDAG on PowerPC, X86 works fine.
Long story short: https://llvm.org/bugs/show_bug.cgi?id=31890 The backend fails to schedule a given DAG, the reason being that there is an instruction and it glue that needs to be broken apart as they can't be scheduled consecutively. See attached file for a picture of the DAG. Not sure what's the best course of action is, and not sure why this isn't a problem for the X86 backend
2011 Jul 14
3
[LLVMdev] [PATCH] Segmented Stacks
Hi llvm-dev! I have attached the current state of my GSoC work in patches [1] for review; this currently allows LLVM to correctly handle functions running out of stack space and variable sized stack objects. Firstly, since I think it is better to get things merged in small chunks, I'd like to have some specific feedback on where my work stands in terms of mergeability. Secondly, I had been
2000 Sep 16
1
DIY hardware player -> Vorbis??
Hello all, I ran across this link from slashdot and it looks like it has a lot of potential: http://www.pjrc.com/tech/mp3/ It is a built-it-yourself kit project for an mp3 player. Although there are still some things that need to be refined, this could be one path to getting a cheap Vorbis hardware player. As I said, it is currently set up for mp3 files, but the firmware is supposedly
2013 Apr 18
0
[LLVMdev] Any value in pre-simplifying the DAG?
Hi edA-qa mort-ora-y, On 17/04/13 21:27, edA-qa mort-ora-y wrote: > I've been adding some new flow statements to my compiler and realize the > easiest/laziest way to produce the DAG is just to store a flow variable > and end blocks with a "switch" branch. It appears the optimizers do a > fine job of unwinding the nonsense, reducing the conditions, and even > expanding
2014 Mar 27
2
[LLVMdev] PR19267 - Add a feature to clobber non-calle-save regs in the prolog.
This is a feature I’m considering for the LLVM backend. Feel free to provide input in the following PR. llvm.org/pr19267 - Add a feature to clobber non-callee-save regs in the prolog. I’m copying llvm-dev because it seems like something that others must have already done or at least thought about at some point. -Andy
2015 Sep 21
2
[RFC] LNT Feature: tracking performance changes
I agree. I plan to implement that next! > On Sep 21, 2015, at 4:25 PM, Hal Finkel <hfinkel at anl.gov> wrote: > > However, I think that unless we're able to e-mail commit authors who cause regressions like we do for buildbot failures, as well as others who are architecture performance experts on the relevant systems, this won't see the use it needs. -------------- next
2016 Aug 24
3
Request suggestions about how to remove redundencies caused by SCEV expansion fundementally
Hi Wei, Wei Mi wrote: > Sanjoy and Andy, thanks a lot for your suggestions. > > On Wed, Aug 24, 2016 at 8:53 AM, Andrew Trick<atrick at apple.com> wrote: >> >>> On Aug 23, 2016, at 11:30 PM, Sanjoy Das<sanjoy at playingwithpointers.com> wrote: >>> >>> Hi Wei, >>> >>> I've not seen GCC's SCEV so I cannot
2009 Jun 22
7
SPARC SATA, please.
Is there a card for OpenSolaris 2009.06 SPARC that will do SATA correctly yet? Need it for a super cheapie, low expectations, SunBlade 100 filer, so I think it has to be notched for 5v PCI slot, iirc. I''m OK with slow -- main goals here are power saving (sleep all 4 disks) and 1TB+ space. Oh, and I hate to be an old head, but I don''t want a peecee. They still scare me :)
2017 Feb 07
2
Problem ScheduleDAG on PowerPC, X86 works fine.
Would it not make sense to refactor the code so those don't use glue rather than emitting them with glue and then getting rid of it. There are times when we would like to emit these in separate blocks but can't (presumably because of the glue). On Tue, Feb 7, 2017 at 9:15 PM, James Y Knight via llvm-dev < llvm-dev at lists.llvm.org> wrote: > That's seems really odd that
2013 Apr 17
2
[LLVMdev] Any value in pre-simplifying the DAG?
I've been adding some new flow statements to my compiler and realize the easiest/laziest way to produce the DAG is just to store a flow variable and end blocks with a "switch" branch. It appears the optimizers do a fine job of unwinding the nonsense, reducing the conditions, and even expanding the trailing paths. For example, I terminate my blocks with a logical switch like this:
2005 May 20
2
Experimental Bitrate peeler
Hi All, As specified in earlier email we have released the trial version of the ogg vorbis decoder. Along with the decoder we have released an experimental version of the bitrate peeler that we have used to test the decoder for bitrate peeled inputs. We have made the executable of the bitrate peeler available from our website downloads section. www.vinjey.com/ogg_downloads.html
2006 Mar 24
13
UPS Batteries
Hello, This may be a really stupid question, but can a gel type marine battery be used in a UPS? Thanks
2016 Dec 29
0
Modernizing LLVM Coding Style Guide and enforcing Clang-tidy
> > > From yesterday discussion, Daniel Berlin proposed using emplace_back > everywhere to make code easier to maintain. I think it is valid argument, > but I believe it would reduce readability. > Just to be clear; I proposed not trying to switch uses back and forth without real data, and to come to some agreement about what should be written in the first place, preferably
2011 Jul 14
0
[LLVMdev] [PATCH] Segmented Stacks
On Thu, Jul 14, 2011 at 9:07 AM, Sanjoy Das <sanjoy at playingwithpointers.com>wrote: > Hi llvm-dev! > > I have attached the current state of my GSoC work in patches [1] for > review; this currently allows LLVM to correctly handle functions running > out of stack space and variable sized stack objects. > > Firstly, since I think it is better to get things merged in
2006 Feb 18
2
Extracting URL and text from HTML?
For an application I am working on I have to extract URLs and the text used to link. For example, ..... <a href="http://www.rubyonrails.org" title="rails" >Ruby on Rails</a>.... I have been trying all night but cannot come up with the regular expression needed to extract the URLs and the text. I have tried:
2023 Jul 04
1
Synology shares not accessible...
I have had many discussions with Synology about this and other attitudes they have been displaying in the last few years. Also if you log into their NAS, using ssh and take a look at some of the comments that have been added into the "ETC" configs, it makes it very clear. They have also been removing any posts relating to methods or help given in the forums that relate to SAMBA ,
2006 Nov 01
4
My Phone Review- Large Scale Corp Deployment.
I have had the opportunity to test many IP phones in the last 6 months and I thought you might enjoy a quick review of what I have found. Grandstream Budgtone 200 - Poor Quality for business use- Looks good, and the handset feels nice, buttons have a decent feel, but the disply is difficult to read when you are not directly over head of the phone, plus the sound quality of the handset, and