search for: footprint

Displaying 20 results from an estimated 921 matches for "footprint".

2007 Nov 28
5
Memory footprint
Hi Everybody, my rails 1.2.5 application runs in a linux embedded environment with serious memory constraints. I would need to know how small a memory footprint I can hope to get. I run ligthtpd with only one dispatch and I did already remove actionmailer and actionwebservice which I do not need. Currently top shows a memory footprint of 720K for lighttpd and 25M for the dispatch.fcgi process. The smallest the footprint, the better so any suggestion on how...
2007 Dec 03
2
[LLVMdev] LLVM footprint
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 What is the expected footprint of a tool using the LLVM JIT? I have created a simple project that uses the LLVM C++ API to JIT calls to XPCOM method signature... it works well, but the component DLL is very large (Linux x86-74, 5.8MB optimized and stripped). Is this normal? Am I linking to "too much" or not using the...
2011 Nov 03
2
[LLVMdev] large llc footprint
We have a large bitcode file produced from a tool. It's about 23 meg. When we compile this with llc, the footprint is 4-7 gig depending on which target. On a desktop this is not such a problem but it is on mobile devices. The suspect is that the flow graph for the entire program is built and kept for the duration, even if no optimization needing it all is in progress. This would make us think that if we w...
2007 Dec 03
0
[LLVMdev] LLVM footprint
On Mon, 3 Dec 2007, Benjamin Smedberg wrote: > What is the expected footprint of a tool using the LLVM JIT? Right now it's ~1.5 to 2M for one platform, at least on darwin. > I have created a simple project that uses the LLVM C++ API to JIT calls > to XPCOM method signature... it works well, but the component DLL is > very large (Linux x86-74, 5.8MB optimized...
2001 Jan 16
1
Memory Footprint issues
...September of last year in school. I think I'm fairly competent(I Hope :) at it and we were recently discussing bloatware in class. Vorbis seems so large and complex that I offen get intimidated, so I was wondering if anyone else would like to possible work with me on reducing the memory footprint down from 500K? From what its described, that seems to be fairly large. I have a copy of Visual Studio, so I'm all set with tools. However I'm a newbie when it comes to working on large-code, open source stuff like this. If your interested, please e-mail me privetly, or on AOL IM (cardb...
2009 Mar 26
6
Need to find small footprint asterisk platform
Hey all, I have a potential project which calls for a very small form-factor computer like this: http://www.marvell.com/products/embedded_processors/developer/kirkwood/sheevaplug.jsp However, I am needing an FXS port integrated into a small footprint computer. Nothing larger than a WiFi router or gateway device, but the smaller the better, and able to run Asterisk with at least a spare USB port and preferably WiFi on the system (but no necessary). Even a device that could integrate the S100U into the case would be good. Anyone know of a devi...
2011 Nov 03
0
[LLVMdev] large llc footprint
On Thu, Nov 3, 2011 at 3:02 PM, reed kotler <rkotler at mips.com> wrote: > We have a large bitcode file produced from a tool. It's about 23 meg. > > When we compile this with llc, the footprint is 4-7 gig depending on > which target. > > On a desktop this is not such a problem but it is on mobile devices. > > The suspect is that the flow graph for the entire program is built and > kept for the duration, even if no optimization needing it all is in > progress. > &gt...
2008 Jun 06
1
how to reduce footprint of smbd?
Hello This is my first mail for this list, so please be considerately. I'm trying to build a tiny version of samba for an embedded device. currently im using the version 2.2 with a footprint of smbd 2.4M. Thats to much. Is there a way/patch to build smbd without everything beside file exchage? I don't need printer, swat, ldap,.... support. Just exchange. I have disabled most of the features via .configure but thats not enough. I found a patch for 2.0 which disable some parts of p...
2007 Dec 03
1
[LLVMdev] LLVM footprint
...nt to JIT code and never interpret it, but it looks like I currently have to pay a codesize penalty for the interpreter anyway. Right now this is personal experimentation, but if Mozilla decides to use te LLVM JIT for some of our Mozilla2 projects we'll definitely be contributing to reduce the footprint as much as possible, as well as the MSVC thiscall support I mentioned before. - --BDS - -- Benjamin Smedberg Platform Guru Mozilla Corporation benjamin at smedbergs.us http://benjamin.smedbergs.us/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - h...
2006 Feb 07
1
Footprint - kickstart management tool
...mplemented (the structure/interface/features). Let me first explain what I aim for (and how it is currently in my head). First of all, it should be straight-forward to manage a list of systems (or groups of systems) that have similar configurations. A config-file could be something like: /etc/footprint/system/proxy-servers.conf [main] boot options = panic=10 acpi=off dist = rhel4as #modules = e100 profile = proxy-servers [proxy01] ip = 10.0.0.1 netmask = 255.255.255.0 mac address = 00:01:02:03:004:05 ... (or even more simple, only hold 1 system) There would be a collection of profil...
2006 Jan 03
2
Reducing Memory Footprint (fcgi)
...TxD, they kill processes that are hogging resources (quite understandably). Unfortunately for me, my Ruby fcgi processes load up rather ... large (just under 50mb). It doesn''t take much to push it to 50mb, at which point it gets killed. Does anyone have any suggestions for reducing the footprint of my app? I know that there is a profiler script available for benchmarking and such, but it seems that it focuses more on speed performance than memory (correct me if I am mistaken, but all the stats I see are for response time). My app seems rather responsive anyway (both as a qualitative obse...
2013 Feb 19
0
[LLVMdev] Passes for object memory footprint / data-direction
...computes the >>> "data-direction" (FORTRAN users know this as intent) of the >>> object, i.e. whether it is read-only, write-only or read-write. The >>> second pass injects code into the LLVM module that, when called at >>> run-time, computes the memory footprint of the object. This also >>> works for non-linear objects, e.g. linked lists or instances of >>> std::map. Dynamic allocation is also supported, with some >>> limitations. >>> >>> Our original aim was to use these passes for a scheduler developed >&gt...
2013 Feb 18
2
[LLVMdev] Passes for object memory footprint / data-direction
...ch use data objects of functions as input. One pass computes the "data-direction" (FORTRAN users know this as intent) of the object, i.e. whether it is read-only, write-only or read-write. The second pass injects code into the LLVM module that, when called at run-time, computes the memory footprint of the object. This also works for non-linear objects, e.g. linked lists or instances of std::map. Dynamic allocation is also supported, with some limitations. Our original aim was to use these passes for a scheduler developed in the project we are currently involved (ENHANCE, http://www.enhance-p...
2013 Feb 18
0
[LLVMdev] Passes for object memory footprint / data-direction
----- Original Message ----- > From: "Sebastian Dreßler" <dressler at zib.de> > To: llvmdev at cs.uiuc.edu > Sent: Monday, February 18, 2013 7:49:39 AM > Subject: [LLVMdev] Passes for object memory footprint / data-direction > > Hi, > > In the past months we were working on two LLVM passes which use data > objects of functions as input. One pass computes the > "data-direction" (FORTRAN users know this as intent) of the object, > i.e. whether it is read-only, write-only...
2011 Nov 03
1
[LLVMdev] large llc footprint
...take a look at llvm-extract. Reed On 11/03/2011 04:25 PM, Eli Friedman wrote: > On Thu, Nov 3, 2011 at 3:02 PM, reed kotler<rkotler at mips.com> wrote: >> We have a large bitcode file produced from a tool. It's about 23 meg. >> >> When we compile this with llc, the footprint is 4-7 gig depending on >> which target. >> >> On a desktop this is not such a problem but it is on mobile devices. >> >> The suspect is that the flow graph for the entire program is built and >> kept for the duration, even if no optimization needing it all is in...
2006 Jul 13
0
Small footprint Rails server
Which Rails servers are good for a small number (2-5) of concurrent users? A small memory footprint is very desireable. TIA, Jeffrey
2015 Jan 08
0
setequal: better readability, reduced memory footprint, and minor speedup
...{ > x <- as.vector(x) > y <- as.vector(y) > all(c(x %in% y, y %in% x)) > } > > Furthermore, replacing 'all(c(x %in% y, y %in x))' with > 'all(x %in% y) && all(y %in% x)' improves readability even more and, > more importantly, reduces memory footprint significantly on big vectors > (e.g. by 15% on integer vectors with 15M elements): > > setequal <- function (x, y) > { > x <- as.vector(x) > y <- as.vector(y) > all(x %in% y) && all(y %in% x) > } > > It also seems to speed up things a little bit (...
2018 Sep 18
0
memory footprint of readRDS()
...obj/file size 23.5567 Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Sep 18, 2018 at 8:28 AM, Joris Meys <jorismeys at gmail.com> wrote: > Dear all, > > I tried to read in a 3.8Gb RDS file on a computer with 16Gb available > memory. To my astonishment, the memory footprint of R rises quickly to over > 13Gb and the attempt ends with an error that says "cannot allocate vector > of size 5.8Gb". > > I would expect that 3 times the memory would be enough to read in that > file, but apparently I was wrong. I checked the memory.limit() and that one...
2007 Jun 25
0
Footprints #10 - Proof of Climate Change
Hello Friend, You are receiving this Newsletter - FOOTPRINTS Newsletter #10 either because you have personally requested it or through a friend or business contact. Please read this Newsletter online at: http://www.planetextinction.com/Newsletter/footprints_10_May07.html Please help us to stay in touch with you by updating your contact details at: = http...
2005 Mar 30
0
Host resource footprint
Dear List: Can anyone tell me the resource footprint of a minimal Xen VM? In other words, how much CPU, memory, disk resources are required to run 1 VM with, for example, a simple 1.68 MB LEAF distro? I''m preparing to create a virtual network to test various LEAF routers and I''m trying to decide whether to use UML or Xen. VMware, w...