search for: degredation

Displaying 20 results from an estimated 41 matches for "degredation".

Did you mean: degradation
2006 Mar 04
4
AjaxScaffold 2.2.0 released with graceful JS degredation
Just wanted to let anyone know that might have checked out the generator before and couldn''t use it b/c you''re project required graceful degredation. Well its in there now. Thanks everyone and enjoy. Demo: http://ajaxscaffold.height1percent.com Release Notes: http://www.height1percent.com/articles/2006/03/04/ajaxscaffold-2-2-0-released-with-graceful-js-degredation -- Richard White Interface Designer Blog | www.height1percent.com Easy to use...
2001 Mar 30
1
Samba - Windows 2000 Client Speed
...r over a year on a small sub network with excellent results. Win NT 4.0, Win 98, and Win 95 machines all connected properly, and transfer speeds and reaction time is quite good. One of the Win NT machines was just upgraded to run Windows 2000. The connectivity still works, but I noticed a severe degredation in transfer speeds to and from the Windows 2000 client. There is also a signifigant delay, sometimes over 10 seconds, when clicking on a share or a folder inside of a share on the Win 2000 client. The Win 98 and NT 4.0 clients are still quite fast. Additional Specs are: Kernel 2.4.2 Distributio...
2016 Nov 28
5
RFC: Constructing StringRefs at compile time
...ear) Just out of curiosity - are there particular reasons you prefer or need to ship an MSVC built version, rather than a bootstrapped Clang? On Mon, Nov 28, 2016 at 9:24 AM Robinson, Paul <paul.robinson at sony.com> wrote: > So I wouldn't personally worry too much about performance degredation when > built with MSVC - if, when building a stage 2 on Windows (building Clang > with MSVC build Clang) you do end up with a compiler with the desired > performance characteristics - then that's probably sufficient. > > > > Hold on there—we deliver an MSVC-built Clang to o...
2016 Nov 25
2
RFC: Constructing StringRefs at compile time
...can write this in such a way that it performs well on good implementations - that seems sufficient. If getting good performance out of the compiler means bootstrapping - that's pretty much the status quo already, as I understand it. So I wouldn't personally worry too much about performance degredation when built with MSVC - if, when building a stage 2 on Windows (building Clang with MSVC build Clang) you do end up with a compiler with the desired performance characteristics - then that's probably sufficient. > > -----Original Message----- > From: llvm-dev [mailto:llvm-dev-bounces...
2002 Sep 13
2
querying the ext3 journal
...goes. We have the need to periodically check for newly created/modified files in a rather elaborate and well populated directory structure. I don't believe that simply walking the directory and checking stat's is the answer, given that I need a process that will impose minimal performance degredation on the system. Would it be possible to query the journal itself for these changes? Is there an API (or better yet, an app) to do so? Direct replies would be welcomed. Thanks in advance for any assistance on this, Marc Wrona Senior Software Engineer Advertising.com (or www.advertising.com) 41...
2006 Jul 14
9
DRY Javascript Degredation
Hi, It seems there must be a better way to do this than what I am currently doing. I have a simple app that collects a users thoughts along with their email address and their first an last name. On a page that lists all the users thoughts they can click on a link to "add a thought" which then displays a form with ajax. My current methodology for this is not very dry. If js is
2006 Feb 09
2
Performance profiling & routes
...URL rewriting in favour of letting Rails'' routes do their job. However, under proper testing, we now see the application slowing down after a period of time (a couple of days); pages take increasingly longer to load over time. This is fixed by a lighttpd restart. Could this performance degredation have anything to do with the use of the routes (we''re just using the default set)? If not, can anyone offer any pointers about good ways to track down performance issues in a Rails app? Please let me know if you need any more info. Thanks much for your help, - Tim -------------- next p...
2016 Nov 28
3
RFC: Constructing StringRefs at compile time
...sity - are there particular reasons you prefer or need to > ship an MSVC built version, rather than a bootstrapped Clang? > > On Mon, Nov 28, 2016 at 9:24 AM Robinson, Paul <paul.robinson at sony.com> > wrote: > > So I wouldn't personally worry too much about performance degredation when > built with MSVC - if, when building a stage 2 on Windows (building Clang > with MSVC build Clang) you do end up with a compiler with the desired > performance characteristics - then that's probably sufficient. > > > > Hold on there—we deliver an MSVC-built Clang to o...
2003 May 20
2
mdct_backward with fused muladd?
...a C++ compiler) but I can afford an int-to-float if necessary. What values of 'n' does mdct_backward typically get called with? Should it be pretty simple to guarantee proper alignment of the input buffers to a 16-byte boundary? Can I get away with 16x16 multiplies without too much audio degredation? I also would be better off without a big sincos lut as pointed out by Segher Boessenkool back in March. Thanks again. Just to show that I'm not a total leech, here's a slightly faster (at least on the PS2) version of bitrev12 that doesn't use any luts (thanks to http://aggregate.org...
2009 Jul 23
1
[LLVMdev] Two Regalloc Enhancements
...The memory architectures are quite different. > Round-robin register assignment probably will help post-ra scheduling. > However, for small functions it may end up increase the number of > registers used. That can be bad for performance. Correct. As I said, we haven't noticed any degredation. But our code base is very different from yours. :) > > What's the community's opinion on whether these two features are worth > > committing to the public repository? > > I welcome the features as long as we can add them as llc-beta first. > Once we have some more...
2011 May 20
1
scheduling differences between CentOS 4 and CentOS 5?
We have several latency-sensitive "pipeline"-style programs that have a measurable performance degredation when run on CentOS 5.x versus CentOS 4.x. By "pipeline" program, I mean one that has multiple threads. The mutiple threads work on shared data. Between each thread, there is a queue. So thread A gets data, pushes into Qab, thread B pulls from Qab, does some processing, then pushes int...
2008 Nov 19
1
more efficient small subsets from moderate vectors?
...ctor of length nx, then repeatedly draws a single sample from it. lkup <- function(nx, m=10000L) { tbl <- seq_len(nx) names(tbl) <- as.character(tbl) v <- sample(names(tbl), m, replace=TRUE) system.time(for(k in v) tbl[k], gcFirst=TRUE) } There is an abrupt performance degredation at nx=1000 > lkup(1000) user system elapsed 0.180 0.000 0.179 > lkup(1001) user system elapsed 2.444 0.016 2.462 This is because of the heuristic at stringSubscript.c:424, which switches from a 'naive' nx * ns algorithm (ns is the number of elements to...
2016 Nov 28
3
RFC: Constructing StringRefs at compile time
...sity - are there particular reasons you prefer or need to > ship an MSVC built version, rather than a bootstrapped Clang? > > On Mon, Nov 28, 2016 at 9:24 AM Robinson, Paul <paul.robinson at sony.com> > wrote: > > So I wouldn't personally worry too much about performance degredation when > built with MSVC - if, when building a stage 2 on Windows (building Clang > with MSVC build Clang) you do end up with a compiler with the desired > performance characteristics - then that's probably sufficient. > > > > Hold on there—we deliver an MSVC-built Clang to o...
2010 Mar 01
3
NUT with Eaton 9135 6000
Hi Dag 2010/2/28 Dag Atle Nettum <dagatle at innit.no> > Hello > > > > I understand you are the project leader of Nut. > > > > In my company we have a Eaton 9135 6000 UPS, we are running NUT 2.4.1 > (Debian squeeze) > > > > The ups is connected with a USB cable but it reports a temperature of 300 > degredes. > > > > Can I send you
2000 Aug 07
1
full circle on the text stream format
...ly only shifting the complexity elsewhere. To my mind that levels the technical differences between the proposals, so there's no reason not to decide on aesthetics. :-) The last thing I was stuck on was how to deal with dropped packets. XML was designed for integrity verification, not graceful degredation. I now think my original proposal of breaking the document into packets so that the loss of any but the "head" or "end" still results in valid xml on the receiving end will in fact be acceptable. Michael had me convinced for a while, but I think this won't be as important a...
2006 Jul 16
2
how does base camp manage there accounts
hi, Cant find any information this anywhere so was wondering if anyone had any ideas. Basically when you go to basecamp.com it allows you to sign up for a account and gives you a url username.projectpath.com I was just wondering how they do this, and if each account has there own database or if it is all stored in one. thanks scott -- Posted via http://www.ruby-forum.com/.
2007 Nov 12
0
Problem with encoding the first frame of a sample
...erent samples. Also, all the other frames are ok, and this error only happens in some specific speech samples, on the first frame. I hope someone can figure out what causes this, because in the application I'm working on the first frame is important, so this rare problem causes a real quality degredation. (See attached file: sample_short.pcm) Thanks, Aviv Tamar -------------- next part -------------- A non-text attachment was scrubbed... Name: sample_short.pcm Type: application/octet-stream Size: 12800 bytes Desc: not available Url : http://lists.xiph.org/pipermail/speex-dev/attachments/20071112/...
2004 Dec 22
2
GAM: Overfitting
I am analyzing particulate matter data (PM10) on a small data set (147 observations). I fitted a semi-parametric model and am worried about overfitting. How can one check for model fit in GAM? Jean G. Orelien
2007 Jun 26
2
Fax Throughput
I've tried timing faxes two ways:
2009 Jul 23
0
[LLVMdev] Two Regalloc Enhancements
On Jul 23, 2009, at 12:42 PM, David Greene wrote: > We have two features for register allocation we'd like to contribute > if folks > think they are worthwhile. We want to get a read on whether they > will be > useful to people. > > The first features backschedules reloads during the spilling phase. > As > reloads are generated, we have some very simple code