search for: ghastly

Displaying 20 results from an estimated 23 matches for "ghastly".

2004 Mar 10
3
aperm() and as.list() args to "["
...o I modify the RHS to give what I want? Following aren't right either: b[as.vector(c(1,3,2,1)[permutation]) ] b[as.list(c(1,3,2,1)[permutation]) ] OBattempt: eval(parse(text=paste("b[",paste(c(1,3,2,1)[permutation],collapse=","),"]"))) which DOES work, but is ghastly! -- Robin Hankin Uncertainty Analyst Southampton Oceanography Centre SO14 3ZH tel +44(0)23-8059-7743 initialDOTsurname at soc.soton.ac.uk (edit in obvious way; spam precaution)
2015 Nov 19
2
Recent -Os code size regressions
Hello LLVM, Does the community have bots or humans tracking code size for -Os builds? I've noticed troubling regressions lately. Sometime near Nov 5, the EEMBC bitmnp01 benchmark grew by 25% for ARMv7m and 35% for i586. That's ghastly. This week, the EEMBC matrix01 workload grew by 5% for ARMv7m and 3% for i586. Regards, -steve
2006 Jul 27
4
inserting rows into a matrix
...so that A can include zeroes. Given A, I want to strip out the zeroes, pass it to my function, and pad M with rows at positions corresponding to the zeroes of A. Commented, minimal, self-contained, reproducible toy example follows. f <- function(a){cbind(a,a+1,rev(a))} #real function a ghastly nightmare A <- 1:5 f(A) a [1,] 1 2 5 [2,] 2 3 4 [3,] 3 4 3 [4,] 4 5 2 [5,] 5 6 1 # f() works as desired. # Now introduce A2, that includes zeroes. In my application, f(A2) would fail because of the zeroes. A2 <- c(1,0,0,2,4,0,3) I can strip the zeroes out and call f():...
2015 Nov 21
2
Recent -Os code size regressions
...ot around doing a CI for EEMBC or SPEC on ARM. I do > track performance every release, but not code size at -Os. > >> I've noticed troubling regressions lately. Sometime near Nov >> 5, the EEMBC bitmnp01 benchmark grew by 25% for ARMv7m and 35% for >> i586. That's ghastly. This week, the EEMBC matrix01 workload grew by >> 5% for ARMv7m and 3% for i586. > > Hum, v7M is even lower priority for me at the moment. :) > > Though, I have to say, 25% is really bad. Can you bisect to see which > commit was that? Hi Renato, Thanks for advising. The com...
2006 Nov 29
12
What's up with the Manager Interface?!?!
The Asterisk Manager Interface is driving me nuts. Whoever wrote it should be drawn and quartered. Sometimes the data comes back separated by \r\n, and sometimes it's separated by \n. The whole thing is completely inconsistent, and trying to write any kind of API for it is -GHASTLY- Doug.
2024 Mar 21
1
CyberPower PR3000LCDRTXL2U and NUT 2.8.0 - mute?
...the check.? Just FYI. Yeah, definitely planning on replacing the batteries. Just trying to mute the alarm in the meantime. And probably going to suck it up and buy new battery packs instead of buying new SLA batteries and rebuilding them, because Cyberpower's battery "trays" are ghastly. I've seen thicker plastic on notions-counter blister packs. -- Phil Stracchino Babylon Communications phils at caerllewys.net phil at co.ordinate.org Landline: +1.603.293.8485 Mobile: +1.603.998.6958
2014 Apr 25
4
[LLVMdev] Proposal: add intrinsics for safe division
...39;t buy the argument that it biases the target independent IR since any pass that uses TTI in the IR level does the same. The sdiv operation in LLVM IR only makes sense for C and its very direct relatives.  The amount of control flow necessary to represent a safe division for any other language is ghastly.  (a/b) becomes something like (b != 0 ? ((a != INT_MIN || b != -1) ? a / b : INT_MIN) : 0).  It's more useful to the optimizer to see this as the single operation that it really is. Also, this isn't about just a single target.  Any target that has to emulate integer division (like a lot o...
2005 Jul 15
13
CentOS on Compaq Proliant Rackmount Servers
Greetings, Can anyone relate experience(s) installing CentOS on Compaq rack mount servers units please? Easy no problem, easy some issues, or ghastly do not do it under any circumstances... ;) Basically, I'm looking at some used/refurb dual PIII units and will run RAID on Compaq built in SCSI or is it easy to pop in some 3ware SATA in them? Let me know in terms of CentOS 3 and/or 4 please. Regards and TIA, - rh
1998 Jul 09
1
numeric(0) -> NA
...noise,0,4095)) ny2<-round(runif(nnoise,0,4095)) #generate signal dots sx1<-round(runif(nsignal,0,4095)) ... and I need to do do.sim(0,1000,10). But that gives me NAs which are a problem later. (in particular, I can't do if(rr<rbest) if rr is computed from an NA.) BTW I think it is a ghastly waste of resources to do round(runif(nnoise,0,4095)) but I couldn't think of a better way to get ints between 0 and 4095. (It's a waste because the random number generator makes unsigned long ints to begin with, then they are divided by 2^32 to get a double between 0 and 1, and now I am und...
2011 Mar 15
3
Time in video file
Hi I'm trying to store video I encode to a file using Theora and Ogg. The video I record is from my webcam and although the framerate is set to 30 fps I rarely get more then 28-29 fps. Since Theora is fed with a framerate which isn't precise the time of each frame when I play it in VLC doesn't match the exact time of when the frame occurred. So basically I wonder how can I sync a
2011 Apr 29
5
My first attempts at Wine
...ows drivers in Wine, so my gadget that converts analog TV signals to digital in MS WBM video format is unlikely to work, meaning no watching TV on the monitor. My hopes of a quick and easy switch over to Linux-Wine are rapidly fading, but since I'm completely new to this, perhaps I have made a ghastly error somewhere ? Yes, I know its only beta release, but if WinFile and WineProgman don't work, how was it ever released at all ? Dave
2004 Oct 01
2
multiple dimensional diag()
...a_1,1:a_2,...,1:a_d]=a, and x[(a_1+1):(a_1+b_1),...,(a_d+1):(a_d+b_d)]=b. Other elements of x are zero. The fact that I'm having difficulty expressing this succinctly makes me think I'm missing something basic. If a and b have identical dimensions [ie all(dim(a)==dim(b)) ], the following ghastly kludge (which is one of many) works: adiag <- function(a,b) { if(any(dim(a) != dim(b))){stop("a and b must have identical dimensions")} jj <- array(0,rep(2,length(dim(a)))) jj[1] <- 1 jj[length(jj)] <- 1 jj <- kronecker(jj,b) f <- function(i){1:i} d...
2014 Apr 25
2
[LLVMdev] Proposal: add intrinsics for safe division
...Reid Kleckner (rnk at google.com) wrote: On Fri, Apr 25, 2014 at 10:19 AM, Filip Pizlo <fpizlo at apple.com> wrote: The sdiv operation in LLVM IR only makes sense for C and its very direct relatives.  The amount of control flow necessary to represent a safe division for any other language is ghastly.  (a/b) becomes something like (b != 0 ? ((a != INT_MIN || b != -1) ? a / b : INT_MIN) : 0).  It's more useful to the optimizer to see this as the single operation that it really is. This argument makes sense to me. It would be hard for the arm64 backend to pattern match all this control flow...
2011 Jul 09
6
Celebrating Centos 6.0 Day World-wide
...he utterly commendable efforts of the gallant and hard working volunteers who made this excellent experience possible for us to enjoy. Spreading the metaphorical 'word' in the form of a give-away CD or DVD will undoubtedly promote Centos and liberate more computer users from the costly and ghastly tyranny of M$ Windoze. In England one can not purchase a new computer from a chain store without first paying the compulsory Windoze tax even if one has no intention of using Micro$oft. Lets be proud of others world-wide achievement in making Centos 6.0 available to us and let us celibate their in...
2015 Nov 21
3
Recent -Os code size regressions
...ot around doing a CI for EEMBC or SPEC on ARM. I do > track performance every release, but not code size at -Os. > >> I've noticed troubling regressions lately. Sometime near Nov >> 5, the EEMBC bitmnp01 benchmark grew by 25% for ARMv7m and 35% for >> i586. That's ghastly. This week, the EEMBC matrix01 workload grew by >> 5% for ARMv7m and 3% for i586. > > Hum, v7M is even lower priority for me at the moment. :) > > Though, I have to say, 25% is really bad. Can you bisect to see which > commit was that? Hi Renato, Thanks for advising. The com...
2024 Mar 21
1
CyberPower PR3000LCDRTXL2U and NUT 2.8.0 - mute?
On Thu, Mar 21, 2024 at 12:23?PM Phil Stracchino via Nut-upsuser < nut-upsuser at alioth-lists.debian.net> wrote: > I have a CyberPower PR3000LCDRTXL2U with a BP48V75ART2U expansion > chassis, which I am monitoring using NUT 2.8.0 (on Gentoo Linux). TThe > UPS appears to be telling me that the batteries need replacement due to > age. CyberPower support has confirmed that for
1998 May 02
0
R-beta: R-0.61.3 released
...perate hurry. It will migrate to the CRAN sites within a day or two. (See the FAQ for the list of CRAN sites. And see the footer for the FAQ location....) This release mainly fixes a couple of embarassing bugs in 0.61.2. It is expected to be the last of the 0.61.x series (unless something *really* ghastly is discovered), 0.62.0 being scheduled for release some time in mid-June. Here is the list of changes: CHANGES IN R VERSION 0.61.3 NEW FEATURES o find(.) function [on wish of many...] BUG FIXES o Remove "Alpha" revision from opening blurb. Didn't mak...
1998 May 02
0
R-beta: R-0.61.3 released
...perate hurry. It will migrate to the CRAN sites within a day or two. (See the FAQ for the list of CRAN sites. And see the footer for the FAQ location....) This release mainly fixes a couple of embarassing bugs in 0.61.2. It is expected to be the last of the 0.61.x series (unless something *really* ghastly is discovered), 0.62.0 being scheduled for release some time in mid-June. Here is the list of changes: CHANGES IN R VERSION 0.61.3 NEW FEATURES o find(.) function [on wish of many...] BUG FIXES o Remove "Alpha" revision from opening blurb. Didn't mak...
2007 Jul 05
0
universally
...revious Posts A NOTE FROM DR. And now it's time for righteous folk To shove them out the door. Maybe the young ones who haven't learned to be repulsed by the unwashed masses? The Essential Ghoul's Record Shelf A song-by-song tour through pop music's unexpected fascination with the ghastly and supernatural. And now it's time for righteous folk To shove them out the door. Only recently discovered your blog and am Loving it with a capital L! "A psycho in the rubber room," Wagoner adds later, in a stentorian near-whisper. i've enjoyed everything you've posted. Th...
2007 Jul 05
0
universally
...revious Posts A NOTE FROM DR. And now it's time for righteous folk To shove them out the door. Maybe the young ones who haven't learned to be repulsed by the unwashed masses? The Essential Ghoul's Record Shelf A song-by-song tour through pop music's unexpected fascination with the ghastly and supernatural. And now it's time for righteous folk To shove them out the door. Only recently discovered your blog and am Loving it with a capital L! "A psycho in the rubber room," Wagoner adds later, in a stentorian near-whisper. i've enjoyed everything you've posted. Th...