search for: umin

Displaying 20 results from an estimated 21 matches for "umin".

Did you mean: min
2011 Mar 07
0
survest() for cph() in Design package
...5: independent variable 2 (0/1), 1/2+ pack/dat at age 25 logw: weight to be used as an offset in the model rstime2: indicator variable to indicate whether age is below 50, 50-69 or >=70, used as strata in the model The SAS code is (if this helps to address my question/problem) proc phreg data=uminers; model rstime*cc(0)=cr500 smoke25/ entry=rsentry offset=logw rl; baseline out=ch covariates=covs cumhaz=cumhaz stdcumhaz=secumhaz lowercumhaz=lci uppercumhaz=uci/ nomean; strata rstime2; run; My R code is: library(survival) library(Design) > uminers<-read.table("uminers.txt&q...
2010 May 05
2
[LLVMdev] Why llvm function name is different with . and ..
...elta> ) declare i16 @llvm.atomic.load.umax.i16.p0i16( i16* <ptr>, i16 <delta> ) declare i32 @llvm.atomic.load.umax.i32.p0i32( i32* <ptr>, i32 <delta> ) declare i64 @llvm.atomic.load.umax.i64.p0i64( i64* <ptr>, i64 <delta> ) declare i8 @llvm.atomic.load.umin.i8..p0i8( i8* <ptr>, i8 <delta> ) declare i16 @llvm.atomic.load.umin.i16.p0i16( i16* <ptr>, i16 <delta> ) declare i32 @llvm.atomic.load.umin.i32..p0i32( i32* <ptr>, i32 <delta> ) declare i64 @llvm.atomic.load.umin.i64..p0i64( i64* <ptr>, i64 <delta...
2005 May 24
3
Reversing axis in a log plot (PR#7894)
Full_Name: Christian Marquardt Version: 2.1.0 OS: Linux (Redhat 9) Submission from: (NULL) (151.170.240.10) Following the advice of a reader of R-help, I would now like to submit this as a bug report: Say we have x = seq(1,3, by = 0.01) y = exp(x) Plotting and reversing linear axis is fine plot(x,y) plot(x,y, ylim = c(30,1)) as is a usual log-plot: plot(x,y, log =
2010 May 05
0
[LLVMdev] Why llvm function name is different with . and ..
...clare i16 @llvm.atomic.load.umax.i16.p0i16( i16* <ptr>, i16 <delta> ) > declare i32 @llvm.atomic.load.umax.i32.p0i32( i32* <ptr>, i32 <delta> ) > declare i64 @llvm.atomic.load.umax.i64.p0i64( i64* <ptr>, i64 <delta> ) > declare i8 @llvm.atomic.load.umin.i8..p0i8( i8* <ptr>, i8 <delta> ) > declare i16 @llvm.atomic.load.umin.i16.p0i16( i16* <ptr>, i16 <delta> ) > declare i32 @llvm.atomic.load.umin.i32..p0i32( i32* <ptr>, i32 <delta> ) > declare i64 @llvm.atomic.load.umin.i64..p0i64( i64* <ptr>...
2019 Sep 18
2
Vectorizing multiple exit loops
...ake the loop unconditional, no? I know this is a silly case, but > if a more complex loop simplifies to this one by other optimisations, > this would be a very easy change to make. If M < N (provably), SCEV would return an exit count for the loop which reflects this.  If not, we'd get umin(M,N).  We can still generate the vector body at the cost of inserting the umin computation above the loop body.  Both cases can be handled by running the vector loop up to the minimum trip count (well, one less to handle mid-loop exits and side effects).  The M < N case is falls out of the m...
2017 Jan 02
2
RFC: Allowing @llvm.objectsize to be more conservative with null.
...r plan here? I also found gcc's choice of folding builtin_object_size(0, 2) to 0 and builtin_object_size(0, 0) to -1 somewhat odd; I'd have expected the inverse. This follows from the following "intuitive" rules ObjSizeMax(X) = UMAX(ObjSizeMax(A), ObjSizeMax(B)) ObjSizeMin(X) = UMIN(ObjSizeMin(A), ObjSizeMin(B)) (where X is a value that can either be A or B at runtime) and that we want to fold ObjSizeMax(Malloc(N)) = ObjSizeMin(Malloc(N)) = N However, since Malloc can return null: ObjSizeMax(Malloc(N)) = UMAX(N, ObjSizeMax(NULL)) = N ObjSizeMin(Malloc(N)) = UMIN(N, ObjSiz...
2012 Dec 05
6
[LLVMdev] max/min intrinsics
...(and less fragile) if max and min intrinsics were recognized rather than looking for compare-select sequences. The suggestion was to change compare-selects into max and min intrinsic calls during instcombine. The intrinsics to add are: declare iN llvm.{smin,smax}.iN(iN %a, iN %b) declare iN llvm.{umin,umax}.iN(iN %a, iN %b) declare fN llvm.{fmin,fmax}.fN(fN %a, fN %b) What does the community think? Paul
2017 Jan 02
2
RFC: Allowing @llvm.objectsize to be more conservative with null.
...e it returns a location that has N dereferenceable bytes or NULL, it follows that ObjectSizeMin(malloc(N)) should return the smaller of ObjectSizeMin(NULL) and ObjectSizeMin(MemoryLocOfNBytes) == the smaller of ObjectSizeMin(NULL) and N. Given that we want the result of ObjectSizeMin(malloc(N)) == UMIN(ObjectSizeMin(NULL), N) to be N, we'd want ObjectSizeMin(NULL) to be (unsigned)-1 for consistency. However, none of this matters if we're not in a position to change the specification. -- Sanjoy > This is also consistent with how @llvm.objectsize already acts: if the > pointer it&...
2005 Aug 19
1
Summary: Unexpected result of read.dbf
Hi there, This is summary and patch for a bug in read.dbf, demonstrating in Message-Id: <20050818150446.697835cb.stanimura-ngs at umin.ac.jp>. After consulting Rjpwiki, a cyber-community of R user in Japan, the cause was found, and the patch of solution was proposed. Overflowing occurs when we use read.dbf for reading a dbf file having a field of longer signed integer. For example, $ dbf2txt test.dbf #KEYCODE 422010010...
2016 Dec 21
2
RFC: Allowing @llvm.objectsize to be more conservative with null.
...e is to add a "null is unknown size" bit to @llvm.objectsize, much like the "min" bit it already has. If this bit is true, null would be treated like an opaque pointer. Otherwise, @llvm.objectsize would act no differently than it does today. If we like this approach, I'm assuming it would be best to have this bit as a third argument to @llvm.objectsize, rather than making the second argument an i8 and using it as a bag of bits. All thoughts/comments/alternative approaches/etc. highly appreciated. :) Thanks (and Happy Holidays)! George -------------- next part -----------...
2003 Mar 25
1
Cannot rebuild src.rpm
I use R-1.5.1-1 on VineLinux2.6, which is modified and developed from RedHat7.2. Today I tried version-up R system, but I could not rebuild. Rebuilding R-1.6.2-1.src.rpm failed with the following message. make[5]: Leaving directory `/home/umusus/rpm/BUILD/R-1.6.2/src/library' running code in 'tcltk-Ex.R' ...X11 connection rejected because of wrong authentication. X connection to
2012 Dec 05
0
[LLVMdev] max/min intrinsics
...min intrinsics were recognized rather than looking for compare-select sequences. > > The suggestion was to change compare-selects into max and min intrinsic calls during instcombine. > > The intrinsics to add are: > declare iN llvm.{smin,smax}.iN(iN %a, iN %b) > declare iN llvm.{umin,umax}.iN(iN %a, iN %b) > declare fN llvm.{fmin,fmax}.fN(fN %a, fN %b) > > What does the community think? It seems inevitable. For the floating point version, please make it very clear what the behavior of max(-0,+0) and related cases are. This also means stuff that matches compare/sele...
2018 May 14
0
LLVM Weekly - #228, May 14th 2018
...proposed C++2a comparison operator. [r331677](https://reviews.llvm.org/rL331677). * `-foutline` is now `-moutline`. [r331806](https://reviews.llvm.org/rL331806). * Support was added for the `no_stack_protector` attribute. [r331925](https://reviews.llvm.org/rL331925). * New `atomic_fetch_{min,max,umin,umax}` intrinsics were added. [r332193](https://reviews.llvm.org/rL332193). ## Other project commits * compiler-rt gained an experimental data flow tracer for fuzz targets. [r332029](https://reviews.llvm.org/rL332029). * Basic compiler-rt builtins were added for the Hexagon target. [r331881](ht...
2019 Sep 09
3
Vectorizing multiple exit loops
I've recently mentioned in a few places that I'm interested in enhancing the loop vectorizer to handle multiple exit loops, and have been asked to share plans.  This email is intended to a) share my current thinking and b) help spark discussion among interested parties.  I do need to warn that my near term plans for this have been delayed; I got pulled into an internal project
2004 Mar 26
2
With which version of XFree86 can R compile?
Hi there, No information was found which version of XFree86 get along with R. I could not compile R version 1.8.1 with XFree86 4.3.99.902. Here is error message. gcc -I. -I../../../src/include -I../../../src/include -DI18N_MB -I/usr/X11R6/include -I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -mieee-fp -fPIC -O2 -pipe -march=i386 -mcpu=i686 -c dataentry_mb.c -o dataentry_mb.lo In
2016 Jul 22
0
Wine release 1.9.15
...s. wined3d: Set load_local_constsF in shader_init(). d3d11/tests: Add test for writing floating-point specials to render target. d3d10core/tests: Add test for writing floating-point specials to render target. wined3d: Recognize SM5 vocp register. wined3d: Implement SM4 umin instruction. wined3d: Recognize SM4.1 lod opcode. wined3d: Recognize SM4.1 samplepos opcode. wined3d: Recognize SM4.1 sampleinfo opcode. wined3d: Recognize SM5 ubfe opcode. wined3d: Add ARB_vertex_type_2_10_10_10_rev extension. wined3d: Store vertex attribute siz...
2014 Oct 03
2
[LLVMdev] Weird problems with cos (was Re: [PATCH v3 2/3] R600: Add carry and borrow instructions. Use them to implement UADDO/USUBO)
...BFI, // (src0 & src1) | (~src0 & src2) > diff --git a/lib/Target/R600/AMDGPUInstrInfo.td b/lib/Target/R600/AMDGPUInstrInfo.td > index 3d70791..1600c4a 100644 > --- a/lib/Target/R600/AMDGPUInstrInfo.td > +++ b/lib/Target/R600/AMDGPUInstrInfo.td > @@ -91,6 +91,12 @@ def AMDGPUumin : SDNode<"AMDGPUISD::UMIN", SDTIntBinOp, > [SDNPCommutative, SDNPAssociative] > >; > > +// out = (src0 + src1 > 0xFFFFFFFF) ? 1 : 0 > +def AMDGPUcarry : SDNode<"AMDGPUISD::CARRY", SDTIntBinOp, []>; > + > +// out = (src1 > src0) ? 1 :...
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...Op.getOperand(2)); > + case AMDGPUIntrinsic::AMDGPU_imin: > + return DAG.getNode(AMDGPUISD::SMIN, DL, VT, Op.getOperand(1), > + Op.getOperand(2)); > + case AMDGPUIntrinsic::AMDGPU_umin: > + return DAG.getNode(AMDGPUISD::UMIN, DL, VT, Op.getOperand(1), > + Op.getOperand(2)); > + case AMDGPUIntrinsic::AMDIL_round_nearest: > + return DAG.getNode(ISD::FRINT, DL, VT, Op.getOperand(1)); > + case AMDGPUIntri...
2017 Mar 03
0
Wine release 2.3
...bind index for ld_raw and ld_structured. d3d11/tests: Add test for ld_structured instruction. wined3d: Allow swizzle on vThreadIDInGroupFlattened register. wined3d: Use GL_ARB_shading_language_420pack for swizzle operations on scalars. wined3d: Implement [imm_]atomic_{umax, umin} instructions for unsigned integers. wined3d: Implement [imm_]atomic_{imax, imin} instructions for signed integers. wined3d: Do not crash when attempting to issue draw call with no attachments. wined3d: Pass wined3d_caps_gl_ctx to driver quirk match() function. wined3d: Add...
2019 Apr 05
4
[RFC] Changes to llvm.experimental.vector.reduce intrinsics
On 05/04/2019 09:37, Simon Pilgrim via llvm-dev wrote: > On 04/04/2019 14:11, Sander De Smalen wrote: >> Proposed change: >> >> ---------------------------- >> >> In this RFC I propose changing the intrinsics for >> llvm.experimental.vector.reduce.fadd and >> llvm.experimental.vector.reduce.fmul (see options A and B). I also >> propose renaming