search for: plunked

Displaying 20 results from an estimated 36 matches for "plunked".

Did you mean: plonked
2008 Oct 06
8
PoE switch recommendations?
Hey, all. We're rolling out VoIP, and I'm wondering about PoE recommendations, as we're going to have to replace our current network equipment. My first inclination would be to just plunk down the cash and do a Cisco system, but I'm relatively certain that would get shot down by finance. Any recommendations for a couple-hundred-port solution with VLANs, PoE, and QoS? Don't
2013 Feb 26
0
[LLVMdev] passing vector of booleans to functions
Hi Roland, > define <4 x float> @masked_add_1(<4 x i1> %mask, <4 x float> %a, <4 x float> %b) { > entry: > %add = fadd <4 x float> %a, %b > %sel = select <4 x i1> %mask, <4 x float> %add, <4 x float> %a > ret <4 x float> %sel > } > > I will get: > > addps %xmm1, %xmm2 > pslld $31, %xmm0 >
2006 Mar 30
1
DRY Rails question
I need to pull user preferences on every page load of every controller and action in my app. I do this like so: @user = User.find(@session[''user''].id) @prefs = @user.prefs And it works fine in the action of one of my controllers, but I certainly don''t want to plunk it in every instance. Where do you normally put something like this? I tried putting it in the
2011 Aug 02
1
$IP not getting set?
Using dovecot 2.0.13. I went to implement relay-ctrl per directions on the Wiki, and failed. After running it down, as best as I can determine, the problem is that the $IP variable is not getting set (and thus not re-set in the script wrapper). I plunked a "set >> debug" into the script, and the only env var's that are set are as listed below (slightly sanitized for public display). Anyone have any ideas? I have tried both the Wiki-way, and this way: http://dovecot.org/list/dovecot/2009-December/045139.html with identical re...
2003 Nov 21
0
[LLVMdev] GetElementPtrInst Again!
On Fri, 21 Nov 2003, Reid Spencer wrote: > I'm trying to set up a call to printf in stacker and have managed to > confuse myself. Perhaps you can shed some light. :) > I've declared printf as a function taking a pointer to SByteTy with var > args and returning SIntTy: Sounds good. > When I set up the call, I get the following from that pesky :) verifier: Ah, but
2007 Aug 09
3
inexpensive / reasonably priced workstation / server development box
We are testing some simple low bandwidth video and audio broadcasting using real server and client softwares. So, for quick check and simplicity, we were plunking along TESTING on an 3.2GHz XP box and I noticed frames were getting dropped on the broadcast just for resizing a window on the screen during the session. Talk about totally lame... I know this can be a big deal and start conflicting
2013 Feb 19
0
[LLVMdev] [RFC] NoBuiltin Attribute
Hi Chris, On 19/02/13 03:08, Chris Lattner wrote: > On Feb 18, 2013, at 5:01 PM, Chandler Carruth <chandlerc at google.com > <mailto:chandlerc at google.com>> wrote: >> >> > In the context of LTO, it makes sense for the attribute to be on >> function bodies, not on prototypes. >> > >> Yeah, I noticed that after sending this
2003 Nov 21
2
[LLVMdev] GetElementPtrInst Again!
I'm trying to set up a call to printf in stacker and have managed to confuse myself. Perhaps you can shed some light. I've declared printf as a function taking a pointer to SByteTy with var args and returning SIntTy: > // Create a function for output (int printf(format,...)) > std::vector<Type*> params; > params.push_back( PointerType::get( Type::SByteTy ) );
2013 Feb 26
2
[LLVMdev] passing vector of booleans to functions
Hi all, I'm currently trying to figure out the best way to pass vector of booleans to other functions. Take this small example: define <4 x float> @vcmp_add(<4 x float> %a, <4 x float> %b) { entry: %cmp = fcmp olt <4 x float> %a, %b %add = fadd <4 x float> %a, %b %sel = select <4 x i1> %cmp, <4 x float> %add, <4 x float> %a ret <4 x
2007 Apr 12
1
LME: internal workings of QR factorization
Hi: I've been reading "Computational Methods for Multilevel Modeling" by Pinheiro and Bates, the idea of embedding the technique in my own c-level code. The basic idea is to rewrite the joint density in a form to mimic a single least squares problem conditional upon the variance parameters. The paper is fairly clear except that some important level of detail is missing. For
2009 Apr 26
9
Problems running features with Textmate Cucumber bundle
I finally plunked down for the beta RSpec bundle and I''m working through the initial example. Although I''m a fairly experienced RSpec user, I''m stlll learning new tricks. Anyway, I''m going though the mastermind example, and everything is going well, except that I decided to als...
2005 Jun 22
3
How to I change server=[Samba 3.04.14a-2] to something else?
So I have setup my samba box as a PDC and everything is working fine. There is one thing that keeps bugging me: When I run locallly: smbclient -L localhost -U% I get the following: ----------------------------- Domain=[MYDOMAIN] OS=[Unix] Server=[Samba 3.0.14a-2] Sharename Type Comment --------- ---- ------- IPC$ IPC IPC Service
2013 Feb 19
1
[LLVMdev] [RFC] NoBuiltin Attribute
On Tue, Feb 19, 2013 at 12:48 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi Chris, > > > On 19/02/13 03:08, Chris Lattner wrote: > >> On Feb 18, 2013, at 5:01 PM, Chandler Carruth <chandlerc at google.com >> <mailto:chandlerc at google.com>> wrote: >> >>> >>> > In the context of LTO, it makes sense for the attribute
2004 Nov 17
0
[LLVMdev] LowerPacked pass
...you up and running quickly and get you the performance you are obviously after. If backwards compatibility with old hardware is an issue, revisiting the lower packed pass would make sense. Let me know what you think. In the very short term, the hook exposed to create the lower packed pass can be plunked into the X86TargetMachine and get intra function packed types working for you. > PS. Chris, thanks for the feedback on the memory cleanup patch - I'm a > bit busy getting LLVM integrated in our app now, but I will incorporate > your suggestions and submit a proper patch soon... No pr...
2013 Feb 19
2
[LLVMdev] [RFC] NoBuiltin Attribute
On Feb 18, 2013, at 5:01 PM, Chandler Carruth <chandlerc at google.com> wrote: > > In the context of LTO, it makes sense for the attribute to be on function bodies, not on prototypes. > > > Yeah, I noticed that after sending this patch. I modified it to check the function CI is in for that attribute. Once we have support for the `-fno-builtin-FUNCTION' flag, I expect the
2004 Nov 17
2
[LLVMdev] LowerPacked pass
Hello, Our software uses 4 x float vectors a lot, and I pass these to LLVM as packed types - but when I do the JIT compile it seems that the LowerPacked pass is never run so the code generation fails. I noticed that most other passes have a header file with a public createXXXPass() function so they can be added to the PassManager, but LowerPacked doesn't have this... What should I do?
2004 Nov 19
1
[LLVMdev] LowerPacked pass
...the > lower packed pass would make sense. Is it easy to add intrinsics to do things like dot product of packed types using SSE instructions? That's probably all I need... > Let me know what you think. In the very short term, the hook exposed to > create the lower packed pass can be plunked into the X86TargetMachine and > get intra function packed types working for you. The patch you did was missing the actual implementation of createLowerPackedPass, so I'm including my own differences -- I guess you don't want to apply the changes to X86TargetMachine as I'm the only...
2006 Jul 28
12
MenuEngine
Hi all, MenuEngine is a small Rails engine that can generate templated drop-down DHTML menus commonly used for web site navigation. Supports creation of menus from a YAML file, from code and from pre-configured HTML. Optionally integrates with UserEngine for authorization. http://www.muermann.org/ruby/menu_engine Project page: http://rubyforge.org/projects/menuengine This is my first attempt
2013 Feb 26
1
[LLVMdev] passing vector of booleans to functions
Hi Duncan, thanks for the hint. I tried both variants: define <4 x float> @masked_add_1(<4 x i1> signext %mask, <4 x float> %a, <4 x float> %b) define <4 x float> @masked_add_32(<4 x i32> %mask, <4 x float> %a, <4 x float> %b) Unfortunately, this will raise an assertion: Wrong types for attribute: zeroext signext noalias nocapture sret byval nest
2007 Apr 12
0
LME: internal workings of QR factorization --repost
Hi: I've been reading "Computational Methods for Multilevel Modeling" by Pinheiro and Bates, the idea of embedding the technique in my own c-level code. The basic idea is to rewrite the joint density in a form to mimic a single least squares problem conditional upon the variance parameters. The paper is fairly clear except that some important level of detail is missing. For