Displaying 11 results from an estimated 11 matches for "340mb".
Did you mean:
300mb
2000 Apr 01
1
R with no gui
I have an old IBM Thinkpad 701 that has a 340MB disk and a 486 CPU that's
not good for much anymore, so I thought I'd install R on it and make it a
little useful. I went to *tremendous* pains to upgrade Linux on it without X so
there would be some room to put R. But having done that I find that the binary
is R.X11 and it's looking fo...
2012 Apr 05
1
reclaiming lost memory in R
...ret",ls())])
return a result "ret"
}
???
A typical results from gc() after each loop iteration says:
used (Mb) gc trigger (Mb) max used (Mb)
Ncells 326953 17.5 597831 32.0 597831 32.0
Vcells 1645892 12.6 3048985 23.3 3048985 23.3
Which doesn't reflect that 340mb (and 400+mb in virtual memory) that are being used right now.
Even when I do:
print(sapply(ls(all.names=TRUE), function(x) object.size(get(x))))
the largest object is 8179808, which is what it should be.
THe only thing that looked suspicious was the following within Rprof (with memory=stats opt...
2006 Apr 29
1
.imap locaction
Hi
is it possible to have the .imap directory and sub-directory located under
the same directory as mbox users.
i.e /var/spool/mail/%u is where mbox files are
i would like to use /var/spool/maildir/%u/.imap
reason being i do not want my users /home/username used for anything
otherthan their website.
how big do the files under .imap get?
Mark
1999 May 15
2
configure bombing with "no locking available"
...the
RedHat, everything compiled fine. The only thing I can think of is that
it requires a special program/devel/include that I haven't installed
(limited harddrive).
configure output available at request (slightly large).
Data on machine:
486DX2-66
Buslogic SCSI 542B
200MB CONNER CP3200
IDE
340MB CONNER CFA340A
Ha det!
/Tobias
2018 Jun 29
3
[PATCH v34 0/4] Virtio-balloon: support free page reporting
On Wed, Jun 27, 2018 at 01:06:32PM +0200, David Hildenbrand wrote:
> On 25.06.2018 14:05, Wei Wang wrote:
> > This patch series is separated from the previous "Virtio-balloon
> > Enhancement" series. The new feature, VIRTIO_BALLOON_F_FREE_PAGE_HINT,
> > implemented by this series enables the virtio-balloon driver to report
> > hints of guest free pages to the
2018 Jun 29
3
[PATCH v34 0/4] Virtio-balloon: support free page reporting
On Wed, Jun 27, 2018 at 01:06:32PM +0200, David Hildenbrand wrote:
> On 25.06.2018 14:05, Wei Wang wrote:
> > This patch series is separated from the previous "Virtio-balloon
> > Enhancement" series. The new feature, VIRTIO_BALLOON_F_FREE_PAGE_HINT,
> > implemented by this series enables the virtio-balloon driver to report
> > hints of guest free pages to the
2018 Jun 29
0
[PATCH v34 0/4] Virtio-balloon: support free page reporting
...as part of your performance comparison
> too: set page poisoning value to 0 and enable KSM, compare with your
> patches.
Do you mean live migration with zero pages?
I can first share the amount of memory transferred during live migration I saw,
Legacy is around 380MB,
Optimization is around 340MB.
This proves that most pages have already been 0 and skipped during the legacy live migration. But the legacy time is still much larger because zero page checking is costly.
(It's late night here, I can get you that with my server probably tomorrow)
Best,
Wei
2016 Nov 18
2
DWARF Generator
...RM_strp in order to get space savings
> from string pooling. In fact using DW_FORM_string for small strings would
> save some more space (admittedly not much) and a bunch of relocations.
> (I found data from an old experiment, in a debug build of Clang it saved
> ~0.7MB out of a total 340MB of debug-info size, and >360K ELF relocations.)
This is true, but it also adversely affects DWARF parsing speed as you will need to manually skip each C string when parsing the DIEs.
>
> I'd favor an API that passed the string down and let the DIE generator
> (as opposed to the D...
2016 Nov 18
2
DWARF Generator
...> savings
> > from string pooling. In fact using DW_FORM_string for small strings
> would
> > save some more space (admittedly not much) and a bunch of relocations.
> > (I found data from an old experiment, in a debug build of Clang it saved
> > ~0.7MB out of a total 340MB of debug-info size, and >360K ELF
> relocations.)
>
> This is true, but it also adversely affects DWARF parsing speed as you
> will need to manually skip each C string when parsing the DIEs.
>
>
Sorry, thread got derailed a bit - the main point was that Greg wants
support for g...
2016 Nov 18
4
DWARF Generator
> On Nov 17, 2016, at 3:40 PM, David Blaikie <dblaikie at gmail.com> wrote:
>
>
>
> On Thu, Nov 17, 2016 at 3:12 PM Greg Clayton via llvm-dev <llvm-dev at lists.llvm.org> wrote:
> I have recently been modifying the DWARF parser and have more patches planned and I want to be able to add unit tests that test the internal llvm DWARF APIs to ensure they continue to
2012 Mar 25
2
avoiding for loops
I have data that looks like this:
> df1
group id
1 red A
2 red B
3 red C
4 blue D
5 blue E
6 blue F
I want a list of the groups containing vectors with the ids. I am
avoiding subset(), as it is
only recommended for interactive use. Here's what I have so far:
df1 <- data.frame(group=c("red", "red", "red", "blue",