search for: heavyweight

Displaying 20 results from an estimated 260 matches for "heavyweight".

2019 Mar 29
2
Higher level program analysis
...; Could you please help me? I suspect this is highly code-dependent. For example, it's probably feasible to use static analysis to determine error paths, at least for fairly well-behaved programs. A whole-program analysis might be able to better determine such paths but that's likely too heavyweight for a JIT. AOT could do it and use metadata to guide the JIT. On some codes, paths within a loop may be fairly evenly distributed over iterations while for others, execution may be highly biased toward a few. This is probably going to be the most difficult thing to analyze statically without a lo...
2007 Aug 21
5
[PATCH] Add I/O hypercalls for i386 paravirt
In general, I/O in a virtual guest is subject to performance problems. = The I/O can not be completed physically, but must be virtualized. This = means trapping and decoding port I/O instructions from the guest OS. = Not only is the trap for a #GP heavyweight, both in the processor and = the hypervisor (which usually has a complex #GP path), but this forces = the hypervisor to decode the individual instruction which has faulted. = Worse, even with hardware assist such as VT, the exit reason alone is = not sufficient to determine the true nature of...
2007 Aug 21
5
[PATCH] Add I/O hypercalls for i386 paravirt
In general, I/O in a virtual guest is subject to performance problems. = The I/O can not be completed physically, but must be virtualized. This = means trapping and decoding port I/O instructions from the guest OS. = Not only is the trap for a #GP heavyweight, both in the processor and = the hypervisor (which usually has a complex #GP path), but this forces = the hypervisor to decode the individual instruction which has faulted. = Worse, even with hardware assist such as VT, the exit reason alone is = not sufficient to determine the true nature of...
2006 Jul 21
7
nullmailer recommendations
Just wondering what people tend to use for nullmailers on their centos boxes (i.e. a minimal outgoing-only MTA)? I guess the obvious solution is a minimal postfix config, but that seems reasonably heavyweight and easy to misconfigure - is there anything lighter floating around the centos universe? Cheers, Gavin -- Gavin Carr Open Fusion - Open Source Business Solutions [ Linux - Perl - Apache ] http://www.openfusion.com.au - Fashion is a variable, but style is a constant - Programming Perl
2009 May 29
5
CONNMARK target and connmark match support in Ubuntu kernel
Hi, as per the shorewall MultiISP documentation ( http://www1.shorewall.net/MultiISP.html ), it says "Use of this feature requires that your kernel and iptables include CONNMARK target and connmark match support (Warning: Standard Debian™ and Ubuntu™ kernels are lacking that support!)." it means MultiISP wont work properly if i am using Ubuntu server. if yes whats the
2007 Sep 07
5
Ruby IDE with wxRuby
Hello All, There seems to have been a lot of interest in getting wxScintilla incorperated, and I think most of us who want it, want it so we can create an editor, so to avoid multiple projects comming out with the same goal (Not really that bad of a problem....), I''m going to kick start this, and ask that anyone interested in developing a Editor with wxRuby and wxScintilla, to send
2016 Apr 08
2
Tool to Manage KVM with Web Browser
...e what is the best for me. The first requirement is of-course it > should > > be open-source with zero cost and stable for daily operation. Anyone can > > help me decide or advice the best web tools for KVM. > > > > many thanks > > > > oVirt is nice but pretty heavyweight ... depending on your needs I've heard good things about Archipel http://archipelproject.org/ We used WebVirtMgr for a really lightweight thing at previous place ... looks like that's changed to WebVirtCloud now.
2009 May 26
3
Tinyproxy and shorewall setup
...----------------------- Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers & brand creativity professionals. Meet the minds behind Google Creative Lab, Visual Complexity, Processing, & iPhoneDevCamp as they present alongside digital heavyweights like Barbarian Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com
2010 Jul 27
3
[LLVMdev] Why are LLVM libraries enormous?
...but here are some numbers on OS X for comparison: > > 5,282,356 libLLVMCodeGen.a Comparing the size of the static libraries makes little sense, and even less when they are compiled by different tools. What really matters is the size of the executables. I agree that LLVM can be considered a heavyweight dependency on this aspect. [snip]
2016 Apr 19
5
libOption
I'm given to understand that the recommendation these days is to use libOption instead of cl::opt, on the grounds that it has a number of advantages including more control of which options are made available. Is there any information available on how to use libOption, any documentation or example programs? Do any existing programs use it except the clang driver programs? Those customise their
2008 Jan 17
0
[LLVMdev] LLVM and OpenMP
...e Omega a lot and it is a fine choice for the first solver. Although it is very powerful, even it cannot handle symbolic loop strides. Perhaps more importantly for common uses, for many trivial cases (A[x] and A[x+1]), setting up the Omega data structures to invoke the solver can be too heavyweight. It could be worthwhile to add one or more simple solvers (see the Allen and Kennedy textbook for examples) before falling back on Omega. > > > Sebastian > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://...
2010 Sep 17
4
[LLVMdev] Need advise on adding tests - Was: Re: ARM MC .s status?
...nt in llvm.org only talk about pretty heavy weight integration tests (Tcl + FileCheck, .cpp -> (many compilers ...) which is fine, but, but as a sanity check, I can't seem to find an example of a test.cpp file that invokes a certain subset of LLVM API, and self-checks the result - Or is the heavyweight "compile a .cpp file and cross check LLVM-clang's output to gcc" the only way something like this supported? Thanks, -Jason. -jason
2011 Mar 04
3
Updating hardware clock from cron
...rver shuts down unexpectedly, this isn't done, and the hardware clock might be off by a lot when it comes back up. So setting it periodically from a cron job could be useful. What do others do? Adding a one liner to /etc/cron.daily that invokes /etc/rc.d/init.d/ntpd would do it but it seems heavyweight to restart ntpd. Alas, the script doesn't export just the sync_hwclock function.
2007 Apr 03
7
question about memory auto-translate and paravirtual and no pseudophysical overlay
hi I try to understand the code of xen memory there are gmfn, gpfn and pfn in the xen and in the /xen/include/xen/mm.h there are some explanation about them as follows: * 1. gpfn/gpaddr: A guest-specific pseudo-physical frame number or address. * 2. gmfn/gmaddr: A machine address from the p.o.v. of a particular guest. * 3. mfn/maddr: A real machine frame number or address. * 4.
2008 Jan 17
2
[LLVMdev] LLVM and OpenMP
Hi, On Nov 29, 2007 6:19 PM, Chris Lattner <sabre at nondot.org> wrote: > On Thu, 29 Nov 2007, Wojciech Matyjewicz wrote: > > As for the dependence analysis, I need this piece for my project, and I > > am preparing myself to write it. > > Great! > > > I am currently studying some papers, but haven't yet decided on the > > method. Maybe some of you
2007 Dec 14
2
Rapid Random Access
...th elements. Problems: feels like reinventing HDF, cross-platform issues, etc. * Store the data in a number of .RData files in a directory. Hence to get the N-th element just attach(paste("foo/A-",n,'.RData')) give or take a parameter or two. * Use a database. Seems a bit heavyweight, but maybe using RSQLite could work in order to keep it local. What I'm currently doing is keeping it OO enough that I can in theory implement all of the above. At the moment I have an implementation that does keep them all in R's memory as a list of data frames, which is fine for sm...
2006 May 11
1
Mixins
...ll be available to views, I write a helper function in one of the places set aside or that very task by Rails. If I want to write a little suite of functions to be mixed in by a number of model classes (but not all), where do I put them? Plug-ins look like AN answer, but they also seem a little heavyweight for simple, project-specific tasks.
2005 May 01
2
yum pinning rpms
...nOffice installed, so I'm not interested in the updates for OpenOffice 1.1.2-24.6.0.EL4 which are now coming in. Is there a way to instruct yum to ignore this update but accept other updates? Sorry if this is a dumb question, but in spite of many years working with Linux I'm not an rpm/yum heavyweight. I'm sure, however, others may appreciate the answer. TIA, -- Collins When I saw the Iraqi people voting three weeks ago, 8 million of them, it was the start of a new Arab world.... The Berlin Wall has fallen. - Lebanese Druze leader Walid Jumblatt
2011 Mar 27
1
A few questions and notes
...apply only to a graphical menu, as I didn't see any effect with a text menu. The Wiki should clearly state what they apply to. 3. Is there a tool that would let me see the PXE boot menu at my desk, instead of having to go physically boot a machine to see it? Using a VM is too heavyweight. I would expect something in the syslinux suite or a 3rd party tool that could at least show the menu.c32 text menu at a [SSH] console or a graphical desktop.
2018 Jul 09
4
NHW Project - some update
...esitate to show up, would be so much appreciated!!! The NHW codec has a high speed, which makes it a good candidate for mobile, embedded devices.There are currently some exploration for a MotionJPEG replacement on low power processor (dual-core 240MHz Xtensa LX6) where MotionJPEG appears to be too heavyweight. With the recent updates, I think the NHW Project is still patent-free and royalty-free. And just the fact that it is royalty-free, should be worth the try. So with this new version, I hope the NHW Project could attract a company that would like to sponsorize the project (to adapt the codec to an...