Displaying 20 results from an estimated 37 matches for "inh".
Did you mean:
in
2012 Dec 08
4
read.table()
...coc
NH Black 26+ 1.1867 0.09546 coc
NH AM-AK 26+ 0.6865 0.24570 coc
NH HI-OPI 26+ 0.5155 0.49176 coc
NH Asian 26+ 0.0787 0.04558 coc
NH Multiracial 26+ 1.1320 0.37928 coc
Mexican 12-17 0.6556 0.23195 inh
Puerto Rican 12-17 0.6060 0.08943 inh
Cuban 12-17 0.4765 0.36661 inh
C-S American 12-17 0.3629 0.12994 inh
Dominican 12-17 0.0300 0.03006 inh
Spanish (Spain) 12-17 0.2020 0.11445 inh
Multi Hisp Eth 12-17 0.7095 0.32063 inh...
2009 Dec 01
4
[LLVMdev] Possible bug in ExpandShiftWithUnknownAmountBit
...alueType(0));
EVT ShTy = Amt.getValueType();
unsigned NVTBits = NVT.getSizeInBits();
assert(isPowerOf2_32(NVTBits) &&
"Expanded integer type size not a power of two!");
DebugLoc dl = N->getDebugLoc();
// Get the incoming operand to be shifted.
SDValue InL, InH;
GetExpandedInteger(N->getOperand(0), InL, InH);
SDValue NVBitsNode = DAG.getConstant(NVTBits, ShTy);
SDValue Amt2 = DAG.getNode(ISD::SUB, dl, ShTy, NVBitsNode, Amt);
SDValue Cmp = DAG.getSetCC(dl, TLI.getSetCCResultType(ShTy),
Amt, NVBitsNode, ISD::SETULT);...
2009 Dec 01
0
[LLVMdev] Possible bug in ExpandShiftWithUnknownAmountBit
On Mon, Nov 30, 2009 at 7:22 PM, Javier Martinez <javier at jmartinez.org> wrote:
> Hello,
>
> I'm working in adding support for 64-bit integers to my target. I'm using
> LLVM to decompose the 64-bit integer operations by using 32-bit registers
> wherever possible and emulating support where not. When looking at the bit
> shift decomposition I saw what seems to be a
2010 Dec 01
1
log-normal Centile
...% and reverse exponential from 50%-100%. Meaning there is the most
spread in the data from 0%-5% and 95%-100%, and very little spread 25%-75%.
This is what I have so far:
plot(x,y,type="l",
log = "y",
xlab="Centile",
ylab="INH MoMs",
xlim=c(1,100),
ylim=c(0.3,5),
col="green" )
I have tried inserting "lognormal = "x"," and other code that might
work that I have found on the "R help", but nothing seems to work. Thank
you in advance for you...
2010 Feb 25
2
proto and baseenv()
...ollowing happens ($.proto delegates to get,
which ascends the parent hierarchy up to globalenv()), but I still
find it anti-intuitive:
> z <- 1
> y <- proto(a=2)
> y$z
[1] 1
Although this is well-documented behavior; wouldn't it uphold the
principle of least surprise to inherit instead from baseenv() or
emptyenv()? (See attached patch.)
Spurious parent definitions have already been the source of bizarre
bugs, prompting me to use proto like this:
> z <- 1
> y <- proto(baseenv(), a=2)
> y$z
Error in get(x, env = this, inherits = inh) : object ...
2009 Dec 01
0
[LLVMdev] Possible bug in ExpandShiftWithUnknownAmountBit
...<== False
... not executed ...
} else { <== This branch is taken
Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Amt, ShTy)); <==
Source low part is shifted left by 6 bits
Hi = DAG.getNode(ISD::OR, dl, NVT,
DAG.getNode(ISD::SHL, dl, NVT, InH,
DAG.getConstant(Amt, ShTy)),
DAG.getNode(ISD::SRL, dl, NVT, InL,
DAG.getConstant(NVTBits-Amt, ShTy))); <==
Source high part is shifted left by 6 bits, and the top 6 bits of the low part
is or'd...
2012 Jan 06
1
ggplot using scale_x_date gives Error in seq.int(r1$year, to$year, by)
...geom_line()
> gp
> #THIS WORKS FINE (BUT AXIS LABELLING NOT VISIBLE WITH MORE DATA, HENCE I WOULD LIKE TO USE SCALE_X_DATE)
> gp<-gp+ scale_x_date()
> gp
Error in seq.int(r1$year, to$year, by) : 'from' must be finite
In addition: Warning messages:
1: In get(x, envir = this, inherits = inh)(this, ...) :
NAs introduced by coercion
2: In min(x) : no non-missing arguments to min; returning Inf
3: In max(x) : no non-missing arguments to max; returning -Inf
4: In min(x) : no non-missing arguments to min; returning Inf
5: In max(x) : no non-missing arguments to max; returning...
2009 Dec 01
2
[LLVMdev] Possible bug in ExpandShiftWithUnknownAmountBit
Hi Duncan,
The problem is the implementation of the expansion. Perhaps an example
can help illustrate better. Take the case of a 64-bit integer shifted
left by say 6 bits and is decomposed using 32-bit registers. Because 6
is less than the 32 (the register size) the resulting low part should be
equal to the source low part shifted left by 6 bits. The current
implementation places a zero
2012 Jan 03
7
Low performance
...4 (xfer#861, to-check=51173/94679)
The same - slow - transfer happens at 1GB and 5GB files.
Any ideas what can cause this slow transmission?
--
Mit freundlichen Gr??en / best regards
Ing. Rainer Pietsch
----------------------------------------------------------
PCS - Pichler Computer Systeme
Inh. Claudia Pichler-Pietsch
Hauptplatz 10
A-2751 Steinabr?ckl
?sterreich / Austria
----------------------------------------------------------
mail: r.pietsch at pcs-at.com
web: http://www.pcs-at.com
tel.: +43 (2622) 420 19 / 15
mobil: +43 (676) 31 242 69
fax: +43 (2622) 420 19 / 20
-------------...
2009 May 21
0
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On Wed, May 20, 2009 at 4:55 PM, Dan Gohman <gohman at apple.com> wrote:
> Can you explain why you chose the approach of using a new pass?
> I pictured removing LegalizeDAG's type legalization code would
> mostly consist of finding all the places that use TLI.getTypeAction
> and just deleting code for handling its Expand and Promote. Are you
> anticipating something more
2009 May 20
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
On May 20, 2009, at 1:34 PM, Eli Friedman wrote:
> On Wed, May 20, 2009 at 1:19 PM, Eli Friedman
> <eli.friedman at gmail.com> wrote:
>
>> Per subject, this patch adding an additional pass to handle vector
>>
>> operations; the idea is that this allows removing the code from
>>
>> LegalizeDAG that handles illegal types, which should be a significant
2009 May 21
2
[LLVMdev] [PATCH] Add new phase to legalization to handle vector operations
...SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
};
}
@@ -360,7 +214,6 @@
void SelectionDAGLegalize::LegalizeDAG() {
LastCALLSEQ_END = DAG.getEntryNode();
IsLegalizingCall = false;
- IsLegalizingCallArgs = false;
// The legalize process is inherently a bottom-up recursive process (users
// legalize their uses before themselves). Given infinite stack space, we
@@ -371,19 +224,14 @@
DAG.AssignTopologicalOrder();
for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
E = prior(DAG.allnodes_end()); I != next(E); ++I...
2001 Jul 31
4
nlme: bug in getCovariateFormula (PR#1038)
I found that predict.gnls failed with a wierd error message about a
non-numeric argument to a binary vector in one of three nearly identical
uses.
Error in Inh/Ki : non-numeric argument to binary operator
(Inh and Ki are arguments to the function used in the formula for the
object whose predictions were requested).
It turns out that the problem is in getCovariateFormula().
The final line in getCovariateFormula() in the nlme package (version
3.1-16) is:...
2006 Apr 07
1
fuzzy classification and dissimilarity matrix
Hello,
I want to make a fuzzy classification from a dissimilarity matrix
(calculated with daisy from package 'cluster'). I have tried to use
fanny (package cluster) but I have the same problems than described in a
previous message
(http://tolstoy.newcastle.edu.au/R/help/05/05/4546.html) i.e. it always
gives me two clusters in the results (even if k is different from 2)
with the same
2006 May 05
1
MRPP in R
Hello,
I'm looking for a R function proceeding MRPP (Multi-Response Permutation
Procedures). Is it available?
Thanking you in anticipation,
Jeanne Vallet, PhD student
[[alternative HTML version deleted]]
2010 Nov 30
0
log-normal centile on horizontal axis
...nd I am more interested in viewing the tails of
the distribution. The closest I can get with this is log on the vertical
axis and linear on the horizontal axis. This is what I have so far:
plot(x,y,type="l",
log = "y",
xlab="Centile",
ylab="INH MoMs",
xlim=c(1,100),
ylim=c(0.3,5),
col="green" )
Thank you in advance for your help.
Respectfully, Bob Quinn
[[alternative HTML version deleted]]
2012 Mar 24
1
Suggestions for moving a PDC function
I currently have a server which is both the PDC for my domain and the file
server for the network.
I need to split these functions and move the PDC function to another box,
while leaving the original server as the file server on which home
directories and roaming profiles are stored. User credentials are stored in
a tdbsam database and I am running Samba 3.5.
Does anyone have any pointers on
2012 Jun 07
2
Slave DNS for a DLZ zone
Can I setup a slave server for dlz zone create with samba4 installation ?
German Molano
2006 Jun 30
0
[fdo] .desktop .menu and icons with autotools
...ermore I saw on some Gnome projects that the .desktop translations
are managed with gettext. Is there a standard way to do this ?
Thank you very much.
Jean
--
_________________________________________
/ Il ne se produit rien dans la nature \
| qui puisse lui ?tre attribu? comme un |
| vice inh?rent ; car la nature est |
| toujours la m?me et partout sa |
| puissance d'agir est une et identique. |
\ -+- Spinoza -+- /
-----------------------------------------
\ ^__^
\ (..)\_______
(__)\ )\/\
||...
2014 Jan 28
1
Upgrade
Hi,
Is it possible to "upgrade" my S4 DC which was provisioned win2003 type
to win2008?
Thanks, Robert