Displaying 20 results from an estimated 1000 matches similar to: "Byte-wide stores aren't coalesced if interspersed with other stores"
2018 Sep 11
2
Byte-wide stores aren't coalesced if interspersed with other stores
Andres:
FWIW, codegen will do the merge if you turn on global alias analysis for it
"-combiner-global-alias-analysis". That said, we should be able to do this
merging earlier.
-Nirav
On Mon, Sep 10, 2018 at 8:33 PM, Andres Freund via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Hi,
>
> On 2018-09-10 13:42:21 -0700, Andres Freund wrote:
> > I have, in postres,
2018 Sep 11
2
Byte-wide stores aren't coalesced if interspersed with other stores
Hmm. This looks like the backend conservatively giving up early on merging.
It looks like you're running clang 5.02. There have been some improvements
to the backend's memory aliasing and store merging that have landed since.
Can you check if this is fixed in a newer version?
-Nirav
On Tue, Sep 11, 2018 at 2:21 PM, Andres Freund <andres at anarazel.de> wrote:
> Hi,
>
>
2009 Jun 23
2
Long to wide format without time variable
Hi all,
I am trying to convert a data set of physician death codings (each individual's cause of death is coded by multiple physicians) from long to wide format, but the "reshape" function doesn't seem to work because it requires a "time" variable to identify the sequence among the repeated observations within individuals. My data set has no order, and different
2011 Mar 11
3
Large dataset operations
Hello all,
I'm new to R and trying to figure out how to perform calculations on a large dataset (300 000 datapoints). I have already made some code to do this but it is awfully slow. What I want to do is add a new column for each "rep_ " column where I have taken each value and divide it by the mean of all values where "PlateNo" is the same. My data is in the following
2007 Nov 21
1
ave and sd
Dear list,
I'm still trying to calculate the sd for V2 for
each group in V1 if V3 is '0':
> x
V1 V2 V3
1 A01 2.40 0
2 A01 3.40 1
3 A01 2.80 0
4 A02 3.20 0
5 A02 4.20 0
6 A03 2.98 1
7 A03 2.31 0
8 A04 4.20 0
# Work
x$vmean <- ave(x$V2, x$V1, x$V3 == 0, FUN = mean)
# Work
x$vsd2 <- ave(x$V2, x$V1, FUN = sd)
# Doesn't work
x$vsd <- ave(x$V2, x$V1, x$V3
2014 Jan 06
1
Dovecot quoting problem?
Hello Timo,
I think the following commit makes problems:
http://hg.dovecot.org/dovecot-2.2/rev/68a8b650578e
# Doesn't work
A01 LIST "" ~/Mail/Gesendet
# OK with quoted mailbox
A02 LIST "" "~/Mail/Gesendet"
Details:
imap
* PREAUTH [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID
ENABLE IDLE SORT SORT=DISPLAY THREAD=REFERENCES THREAD=REFS
2017 Sep 22
1
vfs_fruit and extended attributes
Hello Anoop. Thanks for helping with this!
> On Sep 22, 2017, at 00:11, Anoop C S <anoopcs at autistici.org> wrote:
>
> On Thu, 2017-09-21 at 10:35 -0600, Terry McGuire wrote:
>> Hello list. I?m attempting to improve how Samba shares directories on our Gluster volume to Mac
>> users by using the vfs_fruit module.
>
> What versions of GlusterFS and Samba have
2017 Sep 22
0
vfs_fruit and extended attributes
On Thu, 2017-09-21 at 10:35 -0600, Terry McGuire wrote:
> Hello list. I?m attempting to improve how Samba shares directories on our Gluster volume to Mac
> users by using the vfs_fruit module.
What versions of GlusterFS and Samba have you installed? And which platform/distro are you using as
Samba server?
Please paste the output of `gluster volume info <VOLNAME>`.
> This module
2010 Aug 02
3
quota not updated
Hi,
we're using quota with the maildir backend. When new mail arrives, the quota
gets updated. But when mail is expunged, quota stays the same (see imap dialog
below). We're using the latest version from hg ( 1.2.13 ). Any ideas?
###quota part from dovecot -n
plugin:
quota: maildir:User quota
quota_rule: *:storage=2000M
quota_warning: storage=95%% /usr/local/bin/quota-warning.sh
2017 Sep 21
2
vfs_fruit and extended attributes
Hello list. I?m attempting to improve how Samba shares directories on our Gluster volume to Mac users by using the vfs_fruit module. This module does wonders for speeding listings and downloads of directories with large numbers of files in the Finder, but it kills uploads dead. Finder gives an error:
The Finder can?t complete the operation because some data in ?[filename]? can?t be read or
2007 Oct 02
2
plot question
Hello,
I have a question about how to plot a series of data. The folloqing is my
data matrix of n
> n
25p 5p 2.5p 0.5p
16B-E06.g 45379 4383 5123 45
16B-E06.g 45138 4028 6249 52
16B-E06.g 48457 4267 5470 54
16B-E06.g 47740 4676 6769 48
37B-B02.g 42860 6152 19276 72
35B-A02.g 48325 12863 38274 143
35B-A02.g 48410 12806 39013 175
35B-A02.g 48417 9057 40923
2017 Oct 19
0
vfs_fruit and extended attributes
It seems not many folks have much to say about this.
Here?s an update for anyone in a similar situation:
We narrowed down the issue to being with dispersed volumes. When we created a replicated volume, vfs_fruit worked without issue.
Ultimately, what we were seeking was performance. Even for our Windows and Linux users, things could be slow. The good news is that we discovered an SMB config
2006 Apr 07
4
setIs and method dispatch in S4 classes
Dear all,
I have a question regarding setIs and method dispatch in S4 classes:
Consider the following example:
#####################################################
## A02 "contains" A01 by setIs:
setClass("A01", representation(a="numeric",b="numeric"))
setClass("A02", representation(a="numeric",d="numeric"))
2010 Oct 05
1
Custom Flags
I have modified my delivery agent to deposit files in my Maildir
already containing custom flags.
For example, x is appended for files that are sent from local users, y
is for e-mails from Contacts and z is for e-mails from Whitelisted
sources.
A file will thus be delivered in the Maildir and be called something
like: filename:2,yz
Also in the Maildir I created a file called
2007 Dec 14
2
Conflating categories
Hi,
I think this is a pretty basic question. I still couldn#t find the answer to
it, though.
I have some data loaded into R, which looks like this:
> data()
...
38358 Advice Article
38359 Advice Article
38360 GeneralInfo List
38361 GeneralInfo Article
38362 Purchase Paragraphs
38363 Purchase List
38364 Purchase Paragraphs
...
I now
2008 Apr 10
1
adonis (vegan package) and subsetted factors
Hi,
I'm trying to use adonis on a subset of data from a dataframe. The
actual data is in columns 5:118, and the first four columns are various
factors. There are 3 levels of the factor Habitat, and I want to examine
differences among only two of them. So I started with:
> CoastNear = subset(gel_data, Habitat != "I")
The resulting data.frame has three levels for Habitat, but
2007 Sep 20
1
convert data from
Hi,
I am trying to convert a data frame from:
X1 X2
A 1 2
B 3 4
C 5 6
to:
A01 1
A02 2
B01 3
B02 4
C01 5
C02 6.
How can I do it in R?
I appreciate your help.
Zheng
---------------------------------
[[alternative HTML version deleted]]
2009 Aug 07
0
Bug in nlm, found using sem; failure in several flavors (PR#13882)
Adam,
It seems that your attachment didn't make it through.
That aside, my experience with strange errors like those (random type
not implemented ones) has been that you may be looking at a memory
problem on you machine. Given that you can't replicate on another
platform (and the .csv file didn't come through), I would think it
wise to start there.
My 2c. And I love bacon too :)
2014 Jan 21
1
RFC 5267 Contexts for IMAP4 PARTIAL results
Hello,
I am looking at PARTIAL responses using a dovecot version 2.2.5 and am running
into an inconsistency with the RFC which I would like to ask about. The following
section
http://tools.ietf.org/html/rfc5267#section-4.4
lists client requests and server responses which I have tried running against a folder,
specifying the ranges that fit the contents of the folder I have selected.
2013 May 24
0
Problem After adding Bricks
Hello, I have run into some performance issues after adding bricks to
a 3.3.1 volume. Basically I am seeing very high CPU usage and
extremely degraded performance. I started a re-balance but stopped it
after a couple days. The logs have a lot of entries for split-brain as
well as "Non Blocking entrylks failed for". For some of the
directories on the client doing an ls will show multiple