search for: bundles

Displaying 20 results from an estimated 4314 matches for "bundles".

Did you mean: bundle
2006 Jan 09
7
File_column Dynamic directory
I asked this question earlier and did recieve an answer but I am not sure Ifully understood the answer as I am getting all sorts of errors when trying to implement. Basically I want to add a layer to the path for my files. I have the following set up in my model class: file_column :image, :store_dir => :dynamic_dir def dynamic_dir
2006 Feb 09
2
breakpointer error
Hi, I can''t get breakpointer to work on locomotive. Pretty sure it used to work... Any ideas?? Jeroen jeroen$ ruby script/breakpointer /Applications/Locomotive/Bundles/rails-1.0.0-max.bundle/Contents/Resources/ports/lib/ruby/1.8/drb/drb.rb:828:in `getaddrinfo'': getaddrinfo: No address associated with nodename (SocketError) from /Applications/Locomotive/Bundles/rails-1.0.0-max.bundle/Contents/Resources/ports/lib/ruby/1.8/drb/drb.rb:828:in `op...
2008 May 16
0
attachment_fu and/or rmagick on osx -- weird error
...; 2: <li> 3: <% if defined? repeat %> 4: <a href="javascript:void(0);" Trace of template inclusion: /personal_pages/your_locker_door.html.erb RAILS_ROOT: /Users/philsmy/development/BSG Application Trace | Framework Trace | Full Trace /Applications/Locomotive2/Bundles/rmagickRailsMar2007_i386.locobundle/framework/lib/ruby/gems/1.8/gems/RubyInline-3.6.7/lib/inline.rb:78:in `mkdir'' /Applications/Locomotive2/Bundles/rmagickRailsMar2007_i386.locobundle/framework/lib/ruby/gems/1.8/gems/RubyInline-3.6.7/lib/inline.rb:78:in `rootdir'' /Applications/L...
2007 Nov 15
6
Link_to popup divorced from controller?
Here''s my case: Using a link_to popup window to show a related help file of an element on a page. The problem: Window pops up perfectly, but refuses to carryover @instance variables in the controller that I referenced in the link_to command. The tests: - I have the right controller/class, because it renders a specific template, which is what it does. - I have the right template/view,
2005 Dec 15
1
Problem with ActionMailer -- which looks really cool!
Whatever I do to try to connect including trying different ISPs, I get the same errors, here they are: Errno::ECONNREFUSED in Events#send_my_email Connection refused - connect(2) Application Trace | Framework Trace | Full Trace /Applications/Locomotive/Bundles/rails-0.14.1-min.bundle/Contents/ Resources/ports/lib/ruby/1.8/net/protocol.rb:83:in `initialize'' /Applications/Locomotive/Bundles/rails-0.14.1-min.bundle/Contents/ Resources/ports/lib/ruby/1.8/net/protocol.rb:83:in `new'' /Applications/Locomotive/Bundles/rails-0.14.1-min.bundle/...
2011 Dec 02
18
[LLVMdev] RFC: Machine Instruction Bundle
...ode generator. I believe I have a fairly good plan now and would like to share with the LLVM community. Design Criteria 1. The bundle representation must be light weight. We cannot afford to add significant memory or compile time overhead. 2. It must be flexible enough to represent more than VLIW bundles. It should be useful to represent arbitrary sequence of instructions that must be scheduled as a unit. e.g. ARM Thumb2 IT block, Intel compare + branch macro-fusion, or random instruction sequences that are currently modeled as pseudo instructions that are expanded late. 3. Minimize the amount of c...
2016 Oct 27
4
Understanding and Cleaning Up Machine Instruction Bundles
I am using machine instruction bundles [1] before register allocation. This appears not to be too common today and I'd really like some input on the intentions and plans of the current system. And would like some input on clean up proposals. [1] I am currently experimenting to use machine instruction bundles to reliably form macroo...
2008 Apr 07
3
rsync installation _error exit code1
Skipped content of type multipart/alternative-------------- next part -------------- # ./configure configure.sh: Configuring rsync 3.0.1 checking build system type... hppa2.0w-hp-hpux11.11 checking host system type... hppa2.0w-hp-hpux11.11 checking target system type... hppa2.0w-hp-hpux11.11 checking for gcc... no checking for cc... cc checking for C compiler default output file name... a.out
2016 Oct 28
0
Understanding and Cleaning Up Machine Instruction Bundles
...e the bundle. Iterating over the operands > will only give us the operands of the BUNDLE instruction but that is fine, > because it basically has a copy of everything inside the bundle. The BUNDLE instruction simply isn’t necessary to do anything you just described. > == When to finalize bundles; Remove the FinalizeMachineBundles pass? == > > However there is a number of remaining questions/confusion: The RFC indicates > that the finalization step is done as a separate pass at the end of the > register allocation pipeline. In fact a FinalizeMachineBundles pass exists but >...
2012 Jan 11
0
[LLVMdev] RFC: Machine Instruction Bundle
...veloper to add some optimization passes after the packetizer. Instead, I would add the packetizer as a separate pass. It is true that the packetizer must deal in that case with PHI and COPY nodes that are eliminated by the RA. The packetizer can simple group all PHI and COPY instruction into single bundles consisting of only one instruction. >From my experience a simple packetizer that groups instruction into bundles (like the old IA-64 back-end did) without changing the order of the instructions produces bad code. Instead, a VLIW scheduler that directly outputs bundles produces better code. The...
2012 Jun 06
2
[LLVMdev] Instruction bundles before RA: Rematerialization
Hi, We have a new BE for a VLIW-like processor and I'm currently working on instruction bundles. Ideally, I'd like to have bundles *before* RA to model certain constraints, e.g. the exposed one by Tzu-Chien a while ago in his thread http://lists.cs.uiuc.edu/pipermail/llvmdev/2005-September/004798.html In order to build bundles, we have added a new bottom-up MIScheduler, right after r...
2011 Dec 02
0
[LLVMdev] RFC: Machine Instruction Bundle
...erator. I believe I have a fairly good plan now and would like to share with the LLVM community. Design Criteria 1. The bundle representation must be light weight. We cannot afford to add significant memory or compile time overhead. 2. It must be flexible enough to represent more than VLIW bundles. It should be useful to represent arbitrary sequence of instructions that must be scheduled as a unit. e.g. ARM Thumb2 IT block, Intel compare + branch macro-fusion, or random instruction sequences that are currently modeled as pseudo instructions that are expanded late. 3. Minimize the amount of...
2016 Oct 28
2
Understanding and Cleaning Up Machine Instruction Bundles
...g inside the bundle. > > The BUNDLE instruction simply isn’t necessary to do anything you just described. That may all be true. However I'd like to point out that this is the status quo! finalizeBundle() will give you the BUNDLE instruction in the header and it is used by everyone using bundles: ARM, and AMDGPU target and the DFAPacketizer (which is used by Hexagon). Not using BUNDLE and correctly using MIBundleOperands at the right places in the register allocator is not where the code is today! I believe that we are far enough away from it that we should rather fix the status quo first...
2011 Dec 03
1
[LLVMdev] RFC: Machine Instruction Bundle
...have a fairly good plan now and would like to share with the LLVM community. > > Design Criteria > > 1. The bundle representation must be light weight. We cannot afford to add significant memory or compile time overhead. > 2. It must be flexible enough to represent more than VLIW bundles. It should be useful to represent arbitrary sequence of instructions that must be scheduled as a unit. e.g. ARM Thumb2 IT block, Intel compare + branch macro-fusion, or random instruction sequences that are currently modeled as pseudo instructions that are expanded late. > 3. Minimize the amount...
2011 Dec 02
0
[LLVMdev] RFC: Machine Instruction Bundle
...a single bit marking, a newly inserted instruction breaks the coding or special ABI is needed to be used for that). Only real downside I see, iterating over a single packet members becomes a search, but if the scope is BB it is not a big deal. This way we could also effectively represent NOOP bundles (no bundle for a certain cycle value) - VLIW cycles with no instructions issued or estimate scheduling depth easily etc. I am not voting here in any way, I just wanted to bring it up for discussion. Sergei Larin -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum....
2012 Jun 07
2
[LLVMdev] Instruction bundles before RA: Rematerialization
...toklund at 2pi.dk <mailto:stoklund at 2pi.dk>> On Jun 6, 2012, at 2:53 AM, Ivan Llopard <ivanllopard at gmail.com <mailto:ivanllopard at gmail.com>> wrote: > We have a new BE for a VLIW-like processor and I'm currently working on > instruction bundles. Ideally, I'd like to have bundles *before* RA to > model certain constraints, e.g. the exposed one by Tzu-Chien a while ago > in his thread > http://lists.cs.uiuc.edu/pipermail/llvmdev/2005-September/004798.html The bundle support in the tree should handle cons...
2013 Feb 04
2
[LLVMdev] Asserts in bundleWithPred() and bundleWithSucc()
...le cases when original instruction was previously bundled and that bundle also needs updating.... and on top of that almost every time I call bundleWith*() I have to guard it with the check for isBundledWith*(). The code looks rather ugly at that point... ...and if I start dissolve and reconstruct bundles every time I need to manipulate them, I think original intent becomes a bit overly constraining... Sergei --- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation > -----Original Message----- > From: Jakob Stoklund Olesen [mailto:stoklund a...
2006 Jan 18
15
Anyone got Globalize working???
...ActiveRecord::StatementInvalid: Mysql::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''WHERE id = 1'' at line 1: UPDATE products SET WHERE id = 1 from /Applications/Locomotive/Bundles/rails-1.0.0-min.bundle/Contents/Resources/ports/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_record/connection_adapters/abstract_adapter.rb:88:in `log'' from /Applications/Locomotive/Bundles/rails-1.0.0-min.bundle/Contents/Resources/ports/lib/ruby/gems/1.8/gems/activereco...
2012 Jun 06
0
[LLVMdev] Instruction bundles before RA: Rematerialization
On Jun 6, 2012, at 2:53 AM, Ivan Llopard <ivanllopard at gmail.com> wrote: > We have a new BE for a VLIW-like processor and I'm currently working on > instruction bundles. Ideally, I'd like to have bundles *before* RA to > model certain constraints, e.g. the exposed one by Tzu-Chien a while ago > in his thread > http://lists.cs.uiuc.edu/pipermail/llvmdev/2005-September/004798.html The bundle support in the tree should handle constraints like that. T...
2017 Jun 27
4
Ok with mismatch between dead-markings in BUNDLE and bundled instructions?
Hi Quentin and llvm-dev, I've got a regalloc-related question that you might have an opinion or answer about. In our out-of-tree target we've been doing some bundling before register allocation for quite some time now, and last night a new problem popped up. What the fix should be depends on if this bundle is legal or not: BUNDLE %vreg39<imp-def,dead> *