search for: lowballing

Displaying 5 results from an estimated 5 matches for "lowballing".

2006 Jan 13
0
Fwd: [OT] Quick XHTML job
Hi, I have two ten-page websites that I need produced quickly. I can pay a reasonable rate; this isn''t an attempt to lowball--the priority is speed and quality. I have all of the Photoshop files you will need to understand the work you will be producing. More parameters: - Both websites should have identical html, but different stylesheets. (like CSS Zen Garden) - Both websites should
2019 Jan 31
4
[RFC] Vector Predication
...on the ability to finish each operation on those short vectors relatively quickly rather than padding everything to a full vector register. For example, if a loop with a trip count of 20 is vectorized on a machine with 64 elements per vector (that's 64b elements in a 4096b register, so this is lowballing it!), using only masks and not the vector length register makes your vector unit do about three times more work than it would have to if you set the vector length register to 20. That keeps the register file and functional units busy for no good reason. Some microarchitectures take on the burden of...
2005 Oct 23
0
brewing stats
I guess this isn't so much of a help request as a show-and-tell from a non-statistician homebrewer who has been fumbling around with R. If nothing else it provides yet another data set. I hope it is not out of line. Anyway, the plots I have produced are at http://brewiki.org/BatchSparge#poll The polling method is somewhat simple, its just one of those multiple choice style polls you
2019 Feb 01
2
[RFC] Vector Predication
...on the ability to finish each operation on those short vectors relatively quickly rather than padding everything to a full vector register. For example, if a loop with a trip count of 20 is vectorized on a machine with 64 elements per vector (that's 64b elements in a 4096b register, so this is lowballing it!), using only masks and not the vector length register makes your vector unit do about three times more work than it would have to if you set the vector length register to 20. That keeps the register file and functional units busy for no good reason. Some microarchitectures take on the burden of...
2019 Jan 31
4
[RFC] Vector Predication
Philip Reames <listmail at philipreames.com> writes: > Question 1 - Why do we need separate mask and lengths? Can't the > length be easily folded into the mask operand? > > e.g. newmask = (<4 x i1>)((i4)%y & (1 << %L -1)) > and then pattern matched in the backend if needed I'm a little concerned about how difficult it will be to maintain enough