Displaying 20 results from an estimated 15362 matches for "ph".
Did you mean:
hp
2015 Sep 03
2
[RFC] New pass: LoopExitValues
...scevgep values that already exist.
*** Code after LSR ***
; Function Attrs: nounwind optsize
define void @matrix_mul(i32 %Size, i32* nocapture %Dst, i32* nocapture
readonly %Src, i32 %Val) #0 {
entry:
%cmp.25 = icmp eq i32 %Size, 0
br i1 %cmp.25, label %for.cond.cleanup, label %for.body.4.lr.ph.preheader
for.body.4.lr.ph.preheader: ; preds = %entry
%0 = shl i32 %Size, 2
br label %for.body.4.lr.ph
for.body.4.lr.ph: ; preds =
%for.body.4.lr.ph.preheader, %for.cond.cleanup.3
%lsr.iv5 = phi i32* [ %Src, %for.body.4.lr.ph.preheader...
2013 Jan 29
2
[LLVMdev] Apparent indeterminism in PreVerifier
...ion"). The little I understand/assume about it, a verifier pass is
not supposed to change the code (or is it?) but in debug stream I see the
following:
Common predecessor:
*** IR Dump After Loop-Closed SSA Form Pass ***
for.body.us68: ; preds =
%for.body.lr.ph.us81, %for.body.us68
%arrayidx.us70.phi = phi i8* [ %buf.0.ph, %for.body.lr.ph.us81 ], [
%arrayidx.us70.inc, %for.body.us68 ]
%add.ptr4.us72.phi = phi i8* [ %add.ptr4.us72.gep, %for.body.lr.ph.us81 ],
[ %add.ptr4.us72.inc, %for.body.us68 ]
%i.043.us69 = phi i32 [ 0, %for.body.lr.ph.us81 ], [...
2007 May 16
3
Filled step-function?
Hello,
I'd like to generate a filled step-function in R as you can see in the
attachement (image is generated by grapher, but I need a freely
available alternative). The problem is, that I don't know, how to fill
it up. My code right now looks like this:
pH <- c(0,6.1,6.1,6.3,6.6,7.3,0)
Tiefe <- c(0,0,10,40,80,120,10)
plot(pH,Tiefe,type="s",main="Tiefenfunktion pH",ylim=c(120,0),xli...
2010 Jan 05
2
Fast nested List->data.frame
I have very large data sets given in a format similar to d below. Converting
these to a data frame is a bottleneck in my application. My fastest version
is given below, but it look clumsy to me.
Any ideas?
Dieter
# -----------------------
len = 100000
d = replicate(len, list(pH = 3,marker = TRUE,position = "A"),FALSE)
# Data are given as d
# preallocate vectors
pH =rep(0,len)
marker =rep(0,len)
position =rep(0,len)
system.time(
{
for (i in 1:len)
{
d1 = d[[i]]
#Assign to vectors
pH[i] = d1[[1]]...
2008 Feb 20
2
factors ordered by mean
Hi,
How to order the levels os factor not by alphabetic order but by mean of Y.
Somethink like this:
I have this alphabetic order:
> levels(pH)
[1] "alto" "baixo" "medio"
the order by mean os yvar is:
> sort(tapply(Riqueza,pH,mean))
baixo medio alto
11.56667 20.00000 26.80000
How to make the le...
2017 Dec 25
3
plot representation of calculated value known to be 7.4
Dear friends - merry Christmas and thanks a lot for much help during the
year!
In the example below I fail to understand how the calculated value pH is
represented in a simple plot - also included. The calculations are
useful in practice and likely to be right in principle but I cannot see
how this occurs: why a calculated value of 7.4 known as numeric is not
simply plotted as such. It happened on Windows both 7 and 10 with R
version 3.4.1...
2013 Jan 29
2
[LLVMdev] Apparent indeterminism in PreVerifier
Hi Sergei,
"addRuntimeCheck" inserts code that checks that two or more arrays are disjoint. I looked at the code and it looks fine. We generate PHIs in the order that they appear in a vector. The values are inserted in 'canVectorizeMemory', which also looks fine. Please let me know if you think I missed something.
Thanks,
Nadav
On Jan 29, 2013, at 8:48 AM, Sergei Larin <slarin at codeaurora.org> wrote:
> Nadav,
>
>...
2015 Nov 02
2
[StructurizeCFG] Trouble with branches out of a loop
...n for the algorithm used? Is it based on a published paper?
The input IR I have is the following:
define <4 x float> @structurizer_test(<4 x float> %inp.coerce) {
%1 = extractelement <4 x float> %inp.coerce, i32 0
%2 = fcmp ogt float %1, 0.000000e+00
br i1 %2, label %.lr.ph.i, label %._crit_edge.i
.lr.ph.i: ; preds = %7, %0
%i.03.i = phi float [ %8, %7 ], [ 0.000000e+00, %0 ]
%ret.02.i = phi <4 x float> [ %5, %7 ], [ <float 1.000000e+00, float
1.000000e+00, float 1.000000e+00, float 1.000000e+00>, %0 ]
%3 = ex...
2011 Mar 20
2
R as a non-functional language
I'm reading Torgo (2010) *Data Mining with
R*<http://www.liaad.up.pt/~ltorgo/DataMiningWithR/code.html>in
preparation for a class I'll be teaching next quarter. Here's an
example
that is very non-functional.
> pH <- c(4.5,7,7.3,8.2,6.3)
> names(pH) <- c('area1','area2','mud','dam','middle')
> pH
area1 area2 mud dam middle
4.5 7.0 7.3 8.2 6.3
This sort of thing seems to be quite common in R.
*-- Russ *
[[alternative HTML version...
2013 Jan 29
0
[LLVMdev] Apparent indeterminism in PreVerifier
Nadav,
As I peel this onion, it looks like you might know something about
InnerLoopVectorizer::addRuntimeCheck.
What does it do, and can it be causing the below described issue? Could
resuming somehow (indeterministically) switch the order of PHIs in the
original code?
Thanks a lot.
Sergei.
---
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by
The Linux Foundation
> -----Original Message-----
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
> On Behalf Of Sergei Larin
&...
2007 Sep 04
1
CPAN error
...irst time
configuration and after selecting the mirror sites i got this error and i
can't get any modules to be installed. I haven't encountered this before and
not very familiar with cpan.
Constant subroutine __USE_POSIX undefined at
/usr/lib/perl5/5.8.8/i386-linux-thread-multi/features.ph line 8, <STDIN>
line 33.
Constant subroutine __USE_POSIX2 undefined at
/usr/lib/perl5/5.8.8/i386-linux-thread-multi/features.ph line 9, <STDIN>
line 33.
Constant subroutine __USE_POSIX199309 undefined at
/usr/lib/perl5/5.8.8/i386-linux-thread-multi/features.ph line 10, <STDIN>
lin...
2008 May 01
4
efficient code - yet another question
...;- NULL; P <- NULL # matrix of scores and loadings
for (h in 1:ncomp)
{
th <- Xh[, 1]
ende <- FALSE
while (!ende)
{
nr <- nr + 1
ph <- t(crossprod(th, Xh) * as.vector(1 /
crossprod(th)))
ph <- ph * as.vector(1/sqrt(crossprod(ph)))
thnew <- t(tcrossprod(t(ph), Xh) *
as.vector(1/(crossprod(ph))))
prec <- crossprod(th-thnew)...
2008 Nov 12
2
Enquiries about time plots in R
Dear all,
My name is Maria Lathouri and I am currently doing a PhD at Imperial College of London about time series of environmental variables in surface waters. I am trying to do some time plots with R but it seems that it is not working.
The problem is that the time is not regular, for example, a small dataset can be seen below:
Date pH
1/02/1998...
2017 Dec 25
0
plot representation of calculated value known to be 7.4
...iends - copy paste missed
SID <- c() before the first loop - sorry
BW Troels
Den 25-12-2017 kl. 19:12 skrev Troels Ring:
>
> Dear friends - merry Christmas and thanks a lot for much help during
> the year!
>
> In the example below I fail to understand how the calculated value pH
> is represented in a simple plot - also included. The calculations are
> useful in practice and likely to be right in principle but I cannot
> see how this occurs: why a calculated value of 7.4 known as numeric is
> not simply plotted as such. It happened on Windows both 7 and 10 w...
2013 Apr 23
2
[LLVMdev] 'loop invariant code motion' and 'Reassociate Expression'
...ing behavior:
Both start with the same expression:
%add = add i32 %total.0, %next.0
%add1 = add i32 %add, 1
-LLVM-3.1 converts this into:
--after Reassociate expressions:
%add = add i32 %next.0, 1
%add1 = add i32 %add, %total.0
-- after Canonicalize natural loops:
%add = add i32 %next.0.ph, 1
%add1 = add i32 %add, %total.0
-- and during 'loop invariant code motion':
LICM hoisting to while.cond.outer: %add = add i32 %next.0.ph, 1
- LLVM-3.2 converts it into: (Notice the reversion of %total.0 and %next.0)
--after Reassociate expressions:
%add = add i32 %total.0, 1
%ad...
2009 Sep 08
1
Obtaining value of median survival for survfit function to use in calculation
Hi,
I'm sure this should be simple but I can't figure it out! I want to get the median survival calculated by the survfit function and use the value rather than just be able to print it. Something like this:
library(survival)
data(lung)
lung.byPS = survfit(Surv (time, status) ~ ph.ecog, data=lung)
# lung.byPS
Call: survfit(formula = Surv(time, status) ~ ph.ecog, data = lung)
1 observation deleted due to missingness
n events median 0.95LCL 0.95UCL
ph.ecog=0 63 37 394 348 574
ph.ecog=1 113 82 306 268 429
ph.ecog=2 50...
2008 Nov 20
2
Fitting a model
Hello,
This is a very basic question, but I don'y know the answer. I have these
data
delta <-
c(28.6-8.825,28.6-8.828,28.6-8.836,28.6-8.845,28.6-8.897,28.6-8.944,28.6-9.027,28.6-9.091,28.6-9.263,28.6-9.4,28.6-9.7,28.6-9.981,
28.6-10.287,28.6-10.48,28.6-10.684,28.6-10.875)
ph <- c(4.4,4.6,4.8,5,5.2,5.4,5.6,5.8,6,6.2,6.4,6.6,6.8,7,7.2,7.4)
plot(ph,delta,ylab=c(expression(Delta*delta)),xlab="pH")
Which kind of model can I fit on these, so that can I predict for a
given delta the pH of my sample? Once the model is fitted, how can I
plot it on the graph?
Bes...
2013 Jan 29
0
[LLVMdev] Apparent indeterminism in PreVerifier
...that the given loop
ends up vectorized with enough difference to cause bad things later on, but
I have not found the exact cause yet. To continue with my work I'll have to
simply turn off vectorization for now, but I will come back and investigate.
Again, there is some indeterminism in order of PHIs processing somewhere.
I'll keep you posted.
Sergei
---
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by
The Linux Foundation
> -----Original Message-----
> From: Nadav Rotem [mailto:nrotem at apple.com]
> Sent: Tuesday, January 29, 2013 11:15 AM
> T...
2017 Dec 26
2
plot representation of calculated value known to be 7.4
Thanks a lot - formatting the ordinate as ylim=c(4,10) before plotting
pH also removed the problem, and options(digits=10) confirmed that pH
was not all exactly 7.4 - as I knew. Still I wonder just why R chooses
to plot(ATOT,pH) as shown with repeated "7.4" instead of some more
detailed representation. Thanks a gain and happy New Year!
Troels
Den 26-12-20...
2013 Jan 29
1
[LLVMdev] Apparent indeterminism in PreVerifier
...> ends up vectorized with enough difference to cause bad things later on, but
> I have not found the exact cause yet. To continue with my work I'll have to
> simply turn off vectorization for now, but I will come back and investigate.
> Again, there is some indeterminism in order of PHIs processing somewhere.
> I'll keep you posted.
>
> Sergei
>
> ---
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by
> The Linux Foundation
>
>
>> -----Original Message-----
>> From: Nadav Rotem [mailto:nrotem at apple.com]...