Displaying 20 results from an estimated 87 matches for "congruent".
2011 Sep 15
1
Problems with aggregate() function in stats package
...ction in the {stats}
package, and the documentation doesn't address them.
1) Why would the first line work, but the second not? According to the
help file, it accepts a "data=" argument.
> with(tsrc, aggregate(x=DistRatio, by=list(Condition), FUN=mean))
Group.1 x
1 Congruent 1.741789
2 Mismatch 1.771425
> aggregate(x=DistRatio, by=list(Condition), data=tsrc, FUN=mean)
Error in aggregate(x = DistRatio, by = list(Condition), data = tsrc, FUN = mean) :
object 'DistRatio' not found
2) The subset argument also does not appear to work (perhaps this is the...
2019 Jul 02
4
Need the ability to edit Samba SIDs.
I have a Samba problem with eGroupware. Samba 4 is screwing with my
eGroupware UIDs causing Havoc. Samba 4 uses the last four Digits of the
SID rather than the UID Number. I need to know how to alter my user
entry SID so that the last four digits of the SID is congruent with the
UID Numbers of my users.
To fix this; I need the ability to edit the last digits of the SID. I've
tried shutting down the Samba server and using ldbmodify, but that isn't
working. The SiD is in some sort of strange Hash. pdbedit and samba-tool
gives me the error: ?? - samldb: obje...
2015 Nov 17
4
firewalld being stupid
...public zone. To save the change, one must execute firewall-cmd
> --runtime-to-permanent.
>
> This is very frustrating, and not obvious. If --permanent doesn't work
> for a command, then it should give an error - not silently fail
> without doing anything!
>
This behaviour is congruent with SELinux. One utility adjusts the
permanent configuration, the one that will be applied at startup.
Another changes the current running environment without altering the
startup config. From a sysadmin point of view this is desirable since
changes to a running system are often performed for emp...
2019 Jan 05
2
Interaction with Windows bootloader
...syslinux.exe a: bootsecfile.bss
should had meant writing (creating) the bss file, and copying
ldlinux.{sys,c32} to the root of a:, but without writing to the VBR of
a:.
An additional matter, also regarding consistency, is that for the exe
and com installers, the usage of --install is not yet congruent with
the equivalent usage for the Linux-based installers (i.e. with and
without "-i" has currently the same result for the case presented in
this email thread).
I haven't tested the Linux-based installers with the bootsecfile
option; for the exe and com installers, this syntax (t...
2014 Apr 01
2
[LLVMdev] Proposal: Add a guaranteed tail call marker
...et conservative of verifier enforced rules to follow to ensure
that most reasonable backends will be able to perform TCO. It also ensures
that optimizations, like tail merging, don't accidentally move a call out
of tail position.
First, the prototype of the caller and the callee must be "congruent". Two
prototypes are congruent if all return and parameter types match except for
the pointer types. The pointer types can have different pointee types, but
they must have the same address space. In addition, all the ABI impacting
attributes on the parameters must be the same, meaning byval...
2009 Mar 01
1
SPSS repeated interaction contrast in R
...data
TaskSwitch <- factor(rep(c(0:1), 72),
levels=c(0,1),
labels=c("Repetition","Switch"))
CongruenceNow <- factor(rep(c(0,0,1,1,2,2), 24),
levels=c(0,1,2),
labels=c("Congruent","Incongruent","Neutral"))
CongruenceBefore <- factor(rep(c(0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2), 8),
levels=c(0,1,2),
labels=c("Congruent","Incongruent","Neutral"))
# Subjects
Sub...
2017 Sep 05
5
[RFC] PT.2 Add IR level interprocedural outliner for code size.
...arameterization.
- IR Outliner
Being at the IR level requires us to tackle parameterization,
which then brings several optimizations to help lower the cost of
parameterizing a sequence.
* Constant Folding
The IR outliner will identify constant inputs and fold them.
* Congruent Input Condensing
The outliner identifies the congruent sets of parameters for a
function. Example:
void fn(int, int); -> void fn(int);
fn(1, 1); -> fn(1);
fn(%1, %1); -> fn(%1);
Parameters 1 and 2 were found to be the same for ea...
2017 Sep 22
0
[RFC] PT.2 Add IR level interprocedural outliner for code size.
...tliner
> Being at the IR level requires us to tackle parameterization, which then brings several optimizations to help lower the cost of parameterizing a sequence.
>
> * Constant Folding
> The IR outliner will identify constant inputs and fold them.
>
> * Congruent Input Condensing
> The outliner identifies the congruent sets of parameters for a function. Example:
> void fn(int, int); -> void fn(int);
> fn(1, 1); -> fn(1);
> fn(%1, %1); -> fn(%1);
> Parameters 1 and 2 were fou...
2015 Nov 17
3
firewalld being stupid
Nick Bright wrote:
> On 11/17/2015 8:18 AM, James B. Byrne wrote:
>> This behaviour is congruent with SELinux. One utility adjusts the
>> permanent configuration, the one that will be applied at startup.
>> Another changes the current running environment without altering the
>> startup config. From a sysadmin point of view this is desirable since
>> changes to a running...
2024 Jul 11
1
[PATCH] drm/nouveau: Improve variable names in nouveau_sched_init()
...entation.
nouveau_sched_init(), however, defines a variable called
"job_hang_limit" which is passed to drm_sched_init()'s "timeout"
parameter. The actual "hang_limit" parameter is directly set to 0.
Define a new variable and rename the existing one to make naming
congruent with the function API.
Signed-off-by: Philipp Stanner <pstanner at redhat.com>
---
drivers/gpu/drm/nouveau/nouveau_sched.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_sched.c b/drivers/gpu/drm/nouveau/nouveau_sched.c
index 32fa2e2...
2017 Sep 22
2
[RFC] PT.2 Add IR level interprocedural outliner for code size.
...er
> Being at the IR level requires us to tackle parameterization,
> which then brings several optimizations to help lower the cost of
> parameterizing a sequence.
>
> * Constant Folding
> The IR outliner will identify constant inputs and fold them.
>
> * Congruent Input Condensing
> The outliner identifies the congruent sets of parameters for a
> function. Example:
> void fn(int, int); -> void fn(int);
> fn(1, 1); -> fn(1);
> fn(%1, %1); -> fn(%1);
> Parameters 1 and 2 were fo...
2003 Nov 13
1
corrupt client keys question
...ad the file (which depends on where the
file is corrupted) I can still use this corrupted file and STILL
successfully log into the SSH server.
Running openssl rsa -check on the corrupted private confirms it's corrupt:
> $ openssl rsa -in rsa-corrupt1 -check
> RSA key error: dmp1 not congruent to d
> ...
> $
I can understand the SSH client not checking that the private key is
valid, but I would expect that this would be uncovered when the SSH
server attempts to verify the signature?
Anyone got a clue on how this is working, or am I just getting lucky
on which part of the SSH...
2019 Jan 06
0
Interaction with Windows bootloader
...(creating) the bss file, and copying
> ldlinux.{sys,c32} to the root of a:, but without writing to the VBR of
> a:.
This behavior would have been preferable.
> An additional matter, also regarding consistency, is that for the exe
> and com installers, the usage of --install is not yet congruent with
> the equivalent usage for the Linux-based installers (i.e. with and
> without "-i" has currently the same result for the case presented in
> this email thread).
I saw this too.
> I haven't tested the Linux-based installers with the bootsecfile
> option; for the...
2019 May 15
3
AARCH64 Code Size regression between 6/7
I am developing in C for an extremely memory constrained AARCH64 embedded
environment. Sometime between llvm 6 and 7, I'm seeing a code size
regression when I make multiple accesses into a global struct.
Specifically, I have functions that perform several reads/writes into this
global struct.
In older versions (5/6)
- a single ADRP/ADD combo is issued at the beginning of a function to get
my
2019 Jul 02
2
Need the ability to edit Samba SIDs.
...he
>> SID rather than the UID Number.
>
> If you are running Samba as an AD DC, then Unix UID != RID (what you
> are referring to as the 'last four Digits')
>
>
>> ?? I need to know how to alter my user
>> entry SID so that the last four digits of the SID is congruent with the
>> UID Numbers of my users.
> Do not even think of doing this, it will break AD.
>>
>> To fix this; I need the ability to edit the last digits of the SID. I've
>> tried shutting down the Samba server and using ldbmodify, but that isn't
>> working. T...
2003 Mar 11
1
Goodman / Kruskal gamma
The Goodman/Kruskal gamma is a nice descriptive rank-order
correlation statistic, often used in psychology. It is nice
because it is easy to understand. It takes all pairs of values
of each variable and asks whether they are congruent (S+ is the
number in the same order for both variables) or discordant (S-,
opposite ranking). The statistic is (S+ - S-)/(S+ + S-). It is
like tau except for the denominator. (And the significance test
is the same as the test for tau, in cor.test.)
In trying to find the gamma statistic in R, I...
2017 Sep 27
0
[RFC] PT.2 Add IR level interprocedural outliner for code size.
...Being at the IR level requires us to tackle parameterization, which then brings several optimizations to help lower the cost of parameterizing a sequence.
>>
>> * Constant Folding
>> The IR outliner will identify constant inputs and fold them.
>>
>> * Congruent Input Condensing
>> The outliner identifies the congruent sets of parameters for a function. Example:
>> void fn(int, int); -> void fn(int);
>> fn(1, 1); -> fn(1);
>> fn(%1, %1); -> fn(%1);
>> Paramet...
2019 Jan 06
2
Interaction with Windows bootloader
...g
> > ldlinux.{sys,c32} to the root of a:, but without writing to the VBR of
> > a:.
>
> This behavior would have been preferable.
>
> > An additional matter, also regarding consistency, is that for the exe
> > and com installers, the usage of --install is not yet congruent with
> > the equivalent usage for the Linux-based installers (i.e. with and
> > without "-i" has currently the same result for the case presented in
> > this email thread).
>
> I saw this too.
>
> > I haven't tested the Linux-based installers with th...
2019 May 15
2
AARCH64 Code Size regression between 6/7
...d the address of my struct. Assuming this is right, is there some
> way to encourage the behavior of the older versions?
>
>
> Is the IR that gets fed into the backend equivalent between 5/6 and 7/8?
> This sounds like something could go wrong earlier, e.g. failing to
> eliminate congruent address computations in GVN.
>
> In any case, to get to the bottom of this, a reproducer would be helpful.
>
> Cheers,
> Florian
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190515/5b75...
2014 Dec 07
4
syslinux 6.03 does not boot some kernels
...EFI bootloader. And thus, grub2 is able to boot
earlier kernels, while syslinux follows the rules. And is not able to.
H. Peter referenced https://www.kernel.org/doc/Documentation/efi-stub.txt
for a fuller explanation.
Great job writing up documentation, Gene. If H. Peter's explanation is
congruent with Ady's Linux pre-3.3 kernel research, would you add a link to
this fuller explanation?
i.e.,
https://www.kernel.org/doc/Documentation/efi-stub.txt
in the "Linux EFI pre-3.3" section? That fuller explanation really cemented
it in my mind the strong rationale for following th...